summaryrefslogtreecommitdiff
path: root/tests/projects/hybrid
diff options
context:
space:
mode:
authorLiu <[email protected]>2019-12-02 21:32:50 +0800
committerLiu <[email protected]>2019-12-02 21:33:15 +0800
commit30d4183095aa5dcdb9cbe00b1b48e45ca31424fe (patch)
treeb8e47b54d84dab64cc9a65e101fcc947e52ea6cc /tests/projects/hybrid
parent45b739d927c89d93d85f626ab77dee70746c1cd3 (diff)
clear tail white space
Diffstat (limited to 'tests/projects/hybrid')
-rw-r--r--tests/projects/hybrid/static_library/xmake.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/projects/hybrid/static_library/xmake.lua b/tests/projects/hybrid/static_library/xmake.lua
index bc382c7c3..5d0ef1494 100644
--- a/tests/projects/hybrid/static_library/xmake.lua
+++ b/tests/projects/hybrid/static_library/xmake.lua
@@ -4,20 +4,20 @@ target("test")
set_kind("static")
add_files("src/*.c", "src/*.cpp")
if is_plat("macosx") then
- add_files("src/*.m", "src/*.mm")
+ add_files("src/*.m", "src/*.mm")
end
target("demo")
set_kind("binary")
add_deps("test")
- add_files("src/main.cpp")
+ add_files("src/main.cpp")
if is_plat("macosx") then
add_defines("MACOSX")
end
target("demo2")
set_kind("binary")
- add_files("src/main2.cpp", "src/*.d")
+ add_files("src/main2.cpp", "src/*.d")
if not is_plat("macosx") then
set_enabled(false)
end