diff options
| author | ruki <[email protected]> | 2018-11-30 00:17:37 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2018-11-29 19:45:47 +0800 |
| commit | 694677576626d63530bcf0fb69c9611e1a652a21 (patch) | |
| tree | c0b7406db68560b33f722dc122712502406c73b5 | |
| parent | 41e00437bc8e21e9ae3b5e1d8e6609d35e50dd0a (diff) | |
improve mode rules
| -rw-r--r-- | xmake/rules/mode/xmake.lua | 36 |
1 files changed, 27 insertions, 9 deletions
diff --git a/xmake/rules/mode/xmake.lua b/xmake/rules/mode/xmake.lua index 56b50216a..c719ca88c 100644 --- a/xmake/rules/mode/xmake.lua +++ b/xmake/rules/mode/xmake.lua @@ -45,13 +45,19 @@ rule("mode.release") if is_mode("release") then -- set the symbols visibility: hidden - target:set("symbols", "hidden") + if not target:get("symbols") then + target:set("symbols", "hidden") + end -- enable fastest optimization - target:set("optimize", "fastest") + if not target:get("optimize") then + target:set("optimize", "fastest") + end -- strip all symbols - target:set("strip", "all") + if not target:get("strip") then + target:set("strip", "all") + end end end) @@ -63,10 +69,14 @@ rule("mode.profile") if is_mode("profile") then -- set the symbols visibility: debug - target:set("symbols", "debug") + if not target:get("symbols") then + target:set("symbols", "debug") + end -- enable fastest optimization - target:set("optimize", "fastest") + if not target:get("optimize") then + target:set("optimize", "fastest") + end -- enable gprof target:add("cxflags", "-pg") @@ -83,10 +93,14 @@ rule("mode.check") if is_mode("check") then -- enable the debug symbols - target:set("symbols", "debug") + if not target:get("symbols") then + target:set("symbols", "debug") + end -- disable optimization - target:set("optimize", "none") + if not target:get("optimize") then + target:set("optimize", "none") + end -- attempt to enable some checkers for pc if is_mode("check") and is_arch("i386", "x86_64") then @@ -105,10 +119,14 @@ rule("mode.coverage") if is_mode("coverage") then -- enable the debug symbols - target:set("symbols", "debug") + if not target:get("symbols") then + target:set("symbols", "debug") + end -- disable optimization - target:set("optimize", "none") + if not target:get("optimize") then + target:set("optimize", "none") + end -- enable coverage target:add("cxflags", "--coverage") |
