We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fb0d0f commit a8ddfedCopy full SHA for a8ddfed
premake5.lua
@@ -1,3 +1,5 @@
1
+local EXLUCED_FILES = { "src/lua.c", "src/luac.c" }
2
+
3
project "Lua_Server"
4
language "C++"
5
targetname "lua5.1"
@@ -7,12 +9,14 @@ project "Lua_Server"
7
9
["Sources"] = "**.c",
8
10
["*"] = "premake5.lua"
11
}
12
+ excludes(EXLUCED_FILES)
13
14
files {
15
"premake5.lua",
16
"src/**.c",
17
"src/**.h",
18
19
20
21
defines { "LUA_BUILD_AS_DLL" }
22
@@ -39,12 +43,14 @@ if os.target() == "windows" then
39
43
40
44
41
45
46
42
47
48
49
50
51
52
53
54
55
defines {
56
"LUA_USE_APICHECK",
0 commit comments