diff options
| author | ruki <[email protected]> | 2016-02-22 09:07:02 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2016-02-22 09:07:02 +0800 |
| commit | 79d41087733bfa180de9c41341a72756b6450a72 (patch) | |
| tree | cd2696de31ad38ab57133ed102788c9384a5a642 /tests/shared_library_c++/xmake.lua | |
| parent | ec6fd4eeca3fa468cffb25b472eb349c1fed06aa (diff) | |
rename target name for tests
Diffstat (limited to 'tests/shared_library_c++/xmake.lua')
| -rwxr-xr-x | tests/shared_library_c++/xmake.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/shared_library_c++/xmake.lua b/tests/shared_library_c++/xmake.lua index 02b5c7509..d9bc4878f 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("cpp_shared_library") +target("shared_library_c++") -- set kind set_kind("shared") @@ -37,13 +37,13 @@ target("test") set_kind("binary") -- add deps - add_deps("cpp_shared_library") + add_deps("shared_library_c++") -- add files add_files("src/test.cpp") -- add links - add_links("cpp_shared_library") + add_links("shared_library_c++") -- add link directory add_linkdirs("$(buildir)") |
