From ec6fd4eeca3fa468cffb25b472eb349c1fed06aa Mon Sep 17 00:00:00 2001 From: ruki Date: Mon, 22 Feb 2016 08:49:20 +0800 Subject: modify tests script --- tests/console_c/src/main.c | 7 +++++++ tests/console_c/xmake.lua | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100755 tests/console_c/src/main.c create mode 100755 tests/console_c/xmake.lua (limited to 'tests/console_c') diff --git a/tests/console_c/src/main.c b/tests/console_c/src/main.c new file mode 100755 index 000000000..9ae580511 --- /dev/null +++ b/tests/console_c/src/main.c @@ -0,0 +1,7 @@ +#include + +int main(int argc, char** argv) +{ + printf("hello world!\n"); + return 0; +} diff --git a/tests/console_c/xmake.lua b/tests/console_c/xmake.lua new file mode 100755 index 000000000..889055a4d --- /dev/null +++ b/tests/console_c/xmake.lua @@ -0,0 +1,33 @@ +-- 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("c_console") + + -- set kind + set_kind("binary") + + -- add files + add_files("src/*.c") + + -- cgit v1.3.1