Skip to content

Commit 65eaa3f

Browse files
committed
Remove whitespaces
Remove whitespaces
1 parent 63b5b31 commit 65eaa3f

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

build/Helpers.lua

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -134,13 +134,13 @@ function SetupNativeProject()
134134

135135
filter { "configurations:Debug" }
136136
defines { "DEBUG" }
137-
137+
138138
filter { "configurations:Release" }
139139
defines { "NDEBUG" }
140140
optimize "On"
141-
141+
142142
-- Compiler-specific options
143-
143+
144144
filter { "toolset:msc*" }
145145
buildoptions { msvc_buildflags }
146146
defines { msvc_cpp_defines }
@@ -205,7 +205,7 @@ function IncludeDir(dir)
205205
if os.isfile(fp) then
206206
include(dep)
207207
return
208-
end
208+
end
209209

210210
fp = path.join(dep, "premake4.lua")
211211
fp = path.join(os.getcwd(), fp)
@@ -300,4 +300,4 @@ function AddPlatformSpecificFiles(folder, filename)
300300
else
301301
print "Unknown architecture"
302302
end
303-
end
303+
end
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
include "../../../../build/LLVM.lua"
22

33
project "CppSharp.Parser.CLI"
4-
4+
55
kind "SharedLib"
66
language "C++"
77
SetupNativeProject()
88
SetupLLVMIncludes()
9-
9+
1010
dependson { "CppSharp.CppParser" }
1111
flags { common_flags }
1212
clr "On"
1313

1414
filter "toolset:msc*"
15-
buildoptions { clang_msvc_flags }
15+
buildoptions { clang_msvc_flags }
1616

1717
filter {}
18-
18+
1919
files
2020
{
2121
"**.h",
2222
"**.cpp",
2323
"**.lua"
2424
}
25-
25+
2626
includedirs
2727
{
2828
"../../../../include/",
2929
"../../../../src/CppParser/"
3030
}
31-
31+
3232
filter {}
3333

3434
links { "CppSharp.CppParser" }
3535

3636
function SetupParser()
3737
links { "CppSharp.Parser.CLI" }
38-
end
38+
end

src/CppParser/premake5.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ clang_msvc_flags =
99
if EnableNativeProjects() then
1010

1111
project "CppSharp.CppParser"
12-
12+
1313
kind "SharedLib"
1414
language "C++"
1515
SetupNativeProject()
1616
rtti "Off"
1717
defines { "DLL_EXPORT" }
18-
18+
1919
if os.istarget("linux") then
2020
linkgroups "On"
2121
end
@@ -26,7 +26,7 @@ project "CppSharp.CppParser"
2626
linkoptions { "/ignore:4099" } -- LNK4099: linking object as if no debug info
2727

2828
filter {}
29-
29+
3030
files
3131
{
3232
"*.h",
@@ -38,7 +38,7 @@ project "CppSharp.CppParser"
3838
SetupLLVMIncludes()
3939
SetupLLVMLibs()
4040
CopyClangIncludes()
41-
41+
4242
filter {}
4343

4444
project "Std-symbols"

tests/NamespacesDerived/premake4.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ group "Tests/Namespaces"
22
SetupTestGeneratorProject("NamespacesDerived")
33
SetupTestNativeProject("NamespacesDerived", "NamespacesBase")
44
SetupTestProjectsCSharp("NamespacesDerived", "NamespacesBase")
5-
5+
66
project("NamespacesDerived.Tests.CSharp")
77
links { "NamespacesBase.CSharp" }

tests/VTables/premake4.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
group "Tests/VTables"
22
SetupTestCSharp("VTables")
3-
3+
44
if EnableNativeProjects() then
55

66
project("VTables.Native")

0 commit comments

Comments
 (0)