summaryrefslogtreecommitdiff
path: root/xmake/templates/go/static/project/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2019-09-19 00:55:37 +0800
committerruki <[email protected]>2019-09-18 23:33:46 +0800
commit336029c68e4d0fc58bb55dca3ce5fb62bfdbf41b (patch)
tree68072128ac59708b7f56615e626d87e30ed951e2 /xmake/templates/go/static/project/xmake.lua
parentbb3455b845e0b776937283b3ddae4ae557eea52e (diff)
rewrite templates
Diffstat (limited to 'xmake/templates/go/static/project/xmake.lua')
-rw-r--r--xmake/templates/go/static/project/xmake.lua26
1 files changed, 2 insertions, 24 deletions
diff --git a/xmake/templates/go/static/project/xmake.lua b/xmake/templates/go/static/project/xmake.lua
index ddf3b14c5..3c0f05209 100644
--- a/xmake/templates/go/static/project/xmake.lua
+++ b/xmake/templates/go/static/project/xmake.lua
@@ -1,26 +1,3 @@
--- the debug mode
-if is_mode("debug") then
-
- -- enable the debug symbols
- set_symbols("debug")
-
- -- disable optimization
- set_optimize("none")
-end
-
--- the release mode
-if is_mode("release") then
-
- -- set the symbols visibility: hidden
- set_symbols("hidden")
-
- -- enable fastest optimization
- set_optimize("fastest")
-
- -- strip all symbols
- set_strip("all")
-end
-
-- add target
target("module")
@@ -31,7 +8,7 @@ target("module")
add_files("src/test/*.go")
-- add target
-target("[targetname]_demo")
+target("${TARGETNAME}_demo")
-- set kind
set_kind("binary")
@@ -48,3 +25,4 @@ target("[targetname]_demo")
-- add include directory
add_includedirs("$(buildir)")
+${FAQ}