summaryrefslogtreecommitdiff
path: root/tests/console/xmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2015-12-03 15:24:24 +0800
committerruki <[email protected]>2015-12-03 15:24:24 +0800
commit7624723775b58c1811287465e6d7c27cede81b31 (patch)
treee094f7e5bb50f58e1ac70cf00bda6319c244ab52 /tests/console/xmake.lua
parent35755c5252d631c539ba5893843904148173dea9 (diff)
normalize lib*.a/*.lib filename
Diffstat (limited to 'tests/console/xmake.lua')
-rw-r--r--tests/console/xmake.lua9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/console/xmake.lua b/tests/console/xmake.lua
index a79286d86..01406f127 100644
--- a/tests/console/xmake.lua
+++ b/tests/console/xmake.lua
@@ -78,7 +78,14 @@ add_target("hello3")
add_target("hello4")
set_kind("static")
- add_deps("hello1")
+ add_deps("hello1", "hello2")
add_files("$(buildir)/.objs/hello1/**.o")
+ add_files("$(buildir)/.objs/hello2/**.obj")
+
+add_target("hello5")
+ set_kind("static")
+ add_deps("hello4", "hello1")
+ add_files("$(buildir)/hello1.lib")
+ add_files("$(buildir)/libhello4.a")
add_subdirs("src/demo")