diff options
Diffstat (limited to 'tests/c++_console/xmake.lua')
| -rwxr-xr-x | tests/c++_console/xmake.lua | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/c++_console/xmake.lua b/tests/c++_console/xmake.lua deleted file mode 100755 index aaa5d9bb5..000000000 --- a/tests/c++_console/xmake.lua +++ /dev/null @@ -1,32 +0,0 @@ --- 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("cpp_console") - - -- set kind - set_kind("binary") - - -- add files - add_files("src/*.cpp") - |
