summaryrefslogtreecommitdiff
path: root/core
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 /core
parent45b739d927c89d93d85f626ab77dee70746c1cd3 (diff)
clear tail white space
Diffstat (limited to 'core')
-rw-r--r--core/src/lcurses/xmake.lua2
-rw-r--r--core/src/luajit/xmake.lua2
-rw-r--r--core/src/pdcurses/xmake.lua2
-rw-r--r--core/xmake.lua2
4 files changed, 4 insertions, 4 deletions
diff --git a/core/src/lcurses/xmake.lua b/core/src/lcurses/xmake.lua
index 6280b33a0..c4714c316 100644
--- a/core/src/lcurses/xmake.lua
+++ b/core/src/lcurses/xmake.lua
@@ -11,7 +11,7 @@ target("lcurses")
end
-- add the common source files
- add_files("lcurses.c")
+ add_files("lcurses.c")
-- add options
if is_plat("windows") then
diff --git a/core/src/luajit/xmake.lua b/core/src/luajit/xmake.lua
index ccf385cc9..d0aea2473 100644
--- a/core/src/luajit/xmake.lua
+++ b/core/src/luajit/xmake.lua
@@ -28,7 +28,7 @@ target("luajit")
add_includedirs("luajit/src", {public = true})
-- add the common source files
- add_files("luajit/src/*.c|ljamalg.c|luajit.c")
+ add_files("luajit/src/*.c|ljamalg.c|luajit.c")
if is_plat("windows") then
add_files(autogendir .. "/lj_vm.obj")
else
diff --git a/core/src/pdcurses/xmake.lua b/core/src/pdcurses/xmake.lua
index 865d20351..ecbeb62e0 100644
--- a/core/src/pdcurses/xmake.lua
+++ b/core/src/pdcurses/xmake.lua
@@ -8,7 +8,7 @@ target("pdcurses")
add_includedirs("pdcurses", {public = true})
-- add the common source files
- add_files("pdcurses/pdcurses/*.c", "pdcurses/win32/*.c")
+ add_files("pdcurses/pdcurses/*.c", "pdcurses/win32/*.c")
-- add defines
add_defines("PDC_WIDE")
diff --git a/core/xmake.lua b/core/xmake.lua
index 0082eff5c..f7df1d282 100644
--- a/core/xmake.lua
+++ b/core/xmake.lua
@@ -24,7 +24,7 @@ add_defines("_GNU_SOURCE=1", "_FILE_OFFSET_BITS=64", "_LARGEFILE_SOURCE")
-- for the windows platform (msvc)
if is_plat("windows") then
- add_cxflags("-MT")
+ add_cxflags("-MT")
add_ldflags("-nodefaultlib:msvcrt.lib")
add_links("kernel32", "user32", "gdi32")
end