diff options
| author | Liu <[email protected]> | 2019-12-02 21:32:50 +0800 |
|---|---|---|
| committer | Liu <[email protected]> | 2019-12-02 21:33:15 +0800 |
| commit | 30d4183095aa5dcdb9cbe00b1b48e45ca31424fe (patch) | |
| tree | b8e47b54d84dab64cc9a65e101fcc947e52ea6cc /tests/projects/c | |
| parent | 45b739d927c89d93d85f626ab77dee70746c1cd3 (diff) | |
clear tail white space
Diffstat (limited to 'tests/projects/c')
| -rw-r--r-- | tests/projects/c/console/xmake.lua | 4 | ||||
| -rw-r--r-- | tests/projects/c/shared_library/xmake.lua | 4 | ||||
| -rw-r--r-- | tests/projects/c/static library with spaces/xmake.lua | 4 | ||||
| -rw-r--r-- | tests/projects/c/static_library/xmake.lua | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/tests/projects/c/console/xmake.lua b/tests/projects/c/console/xmake.lua index a9106daff..547d0f101 100644 --- a/tests/projects/c/console/xmake.lua +++ b/tests/projects/c/console/xmake.lua @@ -1,5 +1,5 @@ --- add modes: debug and release +-- add modes: debug and release add_rules("mode.debug", "mode.release") -- add target @@ -9,5 +9,5 @@ target("console_c") set_kind("binary") -- add files - add_files("src/*.c") + add_files("src/*.c") diff --git a/tests/projects/c/shared_library/xmake.lua b/tests/projects/c/shared_library/xmake.lua index 48ccc67b3..6507658c6 100644 --- a/tests/projects/c/shared_library/xmake.lua +++ b/tests/projects/c/shared_library/xmake.lua @@ -2,11 +2,11 @@ add_rules("mode.release", "mode.debug") target("shared_library_c") set_kind("shared") - add_files("src/interface.c") + add_files("src/interface.c") target("test") set_kind("binary") add_deps("shared_library_c") - add_files("src/test.c") + add_files("src/test.c") diff --git a/tests/projects/c/static library with spaces/xmake.lua b/tests/projects/c/static library with spaces/xmake.lua index 318c286ee..b35709072 100644 --- a/tests/projects/c/static library with spaces/xmake.lua +++ b/tests/projects/c/static library with spaces/xmake.lua @@ -28,7 +28,7 @@ target("static_library_c") set_kind("static") -- add files - add_files("s r c/interface.c") + add_files("s r c/interface.c") -- add target target("test") @@ -40,6 +40,6 @@ target("test") add_deps("static_library_c") -- add files - add_files("s r c/test.c") + add_files("s r c/test.c") diff --git a/tests/projects/c/static_library/xmake.lua b/tests/projects/c/static_library/xmake.lua index c3cc56e1a..67081b1c2 100644 --- a/tests/projects/c/static_library/xmake.lua +++ b/tests/projects/c/static_library/xmake.lua @@ -2,11 +2,11 @@ add_rules("mode.release", "mode.debug") target("static_library_c") set_kind("static") - add_files("src/interface.c") + add_files("src/interface.c") target("test") set_kind("binary") add_deps("static_library_c") - add_files("src/test.c") + add_files("src/test.c") |
