summaryrefslogtreecommitdiff
path: root/tests/shared_library_c/xmake.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shared_library_c/xmake.lua')
-rwxr-xr-xtests/shared_library_c/xmake.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/shared_library_c/xmake.lua b/tests/shared_library_c/xmake.lua
index d357b72f3..c7526abdf 100755
--- a/tests/shared_library_c/xmake.lua
+++ b/tests/shared_library_c/xmake.lua
@@ -22,7 +22,7 @@ if is_mode("release") then
end
-- add target
-target("c_shared_library")
+target("shared_library_c")
-- set kind
set_kind("shared")
@@ -37,13 +37,13 @@ target("test")
set_kind("binary")
-- add deps
- add_deps("c_shared_library")
+ add_deps("shared_library_c")
-- add files
add_files("src/test.cpp")
-- add links
- add_links("c_shared_library")
+ add_links("shared_library_c")
-- add link directory
add_linkdirs("$(buildir)")