diff options
| author | ruki <[email protected]> | 2017-05-15 20:17:48 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2017-05-15 20:17:48 +0800 |
| commit | 79634bd7f65737d619f87f6b38710195429843d0 (patch) | |
| tree | 3fb6e636d307d9fe59c2621a066210c1e5b7482d | |
| parent | 78c196e4a62564dbdf09e0660097be2b211ca2fb (diff) | |
remove dep links for tests
| -rwxr-xr-x | tests/shared_library_c++/xmake.lua | 6 | ||||
| -rwxr-xr-x | tests/shared_library_c/xmake.lua | 6 | ||||
| -rwxr-xr-x | tests/static_library_c++/xmake.lua | 5 | ||||
| -rwxr-xr-x | tests/static_library_c/xmake.lua | 5 | ||||
| -rw-r--r-- | xmake/templates/c++/shared_library/project/xmake.lua | 5 | ||||
| -rw-r--r-- | xmake/templates/c++/static_library/project/xmake.lua | 5 | ||||
| -rw-r--r-- | xmake/templates/c/shared_library/project/xmake.lua | 5 | ||||
| -rw-r--r-- | xmake/templates/c/static_library/project/xmake.lua | 5 |
8 files changed, 0 insertions, 42 deletions
diff --git a/tests/shared_library_c++/xmake.lua b/tests/shared_library_c++/xmake.lua index 36966c338..6c2d4deea 100755 --- a/tests/shared_library_c++/xmake.lua +++ b/tests/shared_library_c++/xmake.lua @@ -42,10 +42,4 @@ target("test") -- add files add_files("src/test.cpp") - -- add links - add_links("shared_library_c++") - - -- add link directory - add_linkdirs("$(buildir)") - add_rpathdirs("$(buildir)") diff --git a/tests/shared_library_c/xmake.lua b/tests/shared_library_c/xmake.lua index 60c683b24..4cad3064f 100755 --- a/tests/shared_library_c/xmake.lua +++ b/tests/shared_library_c/xmake.lua @@ -42,10 +42,4 @@ target("test") -- add files add_files("src/test.cpp") - -- add links - add_links("shared_library_c") - - -- add link directory - add_linkdirs("$(buildir)") - add_rpathdirs("$(buildir)") diff --git a/tests/static_library_c++/xmake.lua b/tests/static_library_c++/xmake.lua index fa30f3a3b..2e3950d4a 100755 --- a/tests/static_library_c++/xmake.lua +++ b/tests/static_library_c++/xmake.lua @@ -42,9 +42,4 @@ target("test") -- add files add_files("src/test.cpp") - -- add links - add_links("static_library_c++") - - -- add link directory - add_linkdirs("$(buildir)") diff --git a/tests/static_library_c/xmake.lua b/tests/static_library_c/xmake.lua index d4c064fab..842921894 100755 --- a/tests/static_library_c/xmake.lua +++ b/tests/static_library_c/xmake.lua @@ -42,9 +42,4 @@ target("test") -- add files add_files("src/test.c") - -- add links - add_links("static_library_c") - - -- add link directory - add_linkdirs("$(buildir)") diff --git a/xmake/templates/c++/shared_library/project/xmake.lua b/xmake/templates/c++/shared_library/project/xmake.lua index bf2a27ae3..e501547f7 100644 --- a/xmake/templates/c++/shared_library/project/xmake.lua +++ b/xmake/templates/c++/shared_library/project/xmake.lua @@ -42,9 +42,4 @@ target("[targetname]_demo") -- add files add_files("src/test.cpp") - -- add links - add_links("[targetname]") - - -- add link directory - add_linkdirs("$(buildir)") diff --git a/xmake/templates/c++/static_library/project/xmake.lua b/xmake/templates/c++/static_library/project/xmake.lua index 24c1be084..84c9a207b 100644 --- a/xmake/templates/c++/static_library/project/xmake.lua +++ b/xmake/templates/c++/static_library/project/xmake.lua @@ -42,9 +42,4 @@ target("[targetname]_demo") -- add files add_files("src/test.cpp") - -- add links - add_links("[targetname]") - - -- add link directory - add_linkdirs("$(buildir)") diff --git a/xmake/templates/c/shared_library/project/xmake.lua b/xmake/templates/c/shared_library/project/xmake.lua index 86e3e2a4e..b1cc77fc8 100644 --- a/xmake/templates/c/shared_library/project/xmake.lua +++ b/xmake/templates/c/shared_library/project/xmake.lua @@ -42,9 +42,4 @@ target("[targetname]_demo") -- add files add_files("src/test.c") - -- add links - add_links("[targetname]") - - -- add link directory - add_linkdirs("$(buildir)") diff --git a/xmake/templates/c/static_library/project/xmake.lua b/xmake/templates/c/static_library/project/xmake.lua index 4103974c0..c48e22fd7 100644 --- a/xmake/templates/c/static_library/project/xmake.lua +++ b/xmake/templates/c/static_library/project/xmake.lua @@ -42,9 +42,4 @@ target("[targetname]_demo") -- add files add_files("src/test.c") - -- add links - add_links("[targetname]") - - -- add link directory - add_linkdirs("$(buildir)") |
