From d9b728ef46a755c73dbd5da0bb65bf07cef929c6 Mon Sep 17 00:00:00 2001 From: James Hillyerd Date: Tue, 17 Sep 2013 11:00:37 -0700 Subject: [PATCH] Added goxc config for cross compile builds https://github.com/laher/goxc --- .gitignore | 4 ++++ .goxc.json | 12 ++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 .goxc.json diff --git a/.gitignore b/.gitignore index 75452bf..c935fcc 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,7 @@ _testmain.go # our binary /inbucket +/inbucket.exe + +# local goxc config +.goxc.local.json diff --git a/.goxc.json b/.goxc.json new file mode 100644 index 0000000..3495d30 --- /dev/null +++ b/.goxc.json @@ -0,0 +1,12 @@ +{ + "TasksExclude": [ + "pkg-build" + ], + "Os": "darwin freebsd linux windows", + "Resources": { + "Include": "README*,LICENSE*,bin,etc,themes" + }, + "PackageVersion": "0.1", + "PrereleaseInfo": "snapshot", + "FormatVersion": "0.8" +}