summaryrefslogtreecommitdiff
path: root/tests/projects
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects')
-rw-r--r--tests/projects/other/object_only/xmake.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/projects/other/object_only/xmake.lua b/tests/projects/other/object_only/xmake.lua
index 5d6f52045..94f42407f 100644
--- a/tests/projects/other/object_only/xmake.lua
+++ b/tests/projects/other/object_only/xmake.lua
@@ -7,8 +7,9 @@ target("bar")
target("foo")
set_kind("static")
add_deps("bar")
+ add_rules("c++")
-target("object_only")
+target("test")
set_kind("binary")
add_deps("foo")
add_files("src/main.cpp")