Former-commit-id: a022d3dc07743529a3c9523149f264add20ebe44 [formerly 81e2340920ab4565129751cfd9ad74d7c1f71c18] [formerly 1bcaa5dcf97ff705b2e26bf78cbc76830eb3fae0 [formerly cab3c7a3e8af6b72e720a7dfa858d6a03e8bd7cf]] Former-commit-id: cee0ce949787d64407b7b982b2d7287ef0c96481 [formerly eea525a514121da003f8b88c225192b361c65568] Former-commit-id: df9ea49de0575753e5e8c800e306701a6ca9f899
50 lines
924 B
Lua
50 lines
924 B
Lua
TOOL.Name = "SDKServer"
|
|
|
|
TOOL.Directory = "../SDK"
|
|
TOOL.Kind = "Library"
|
|
TOOL.TargetDirectory = "../lib"
|
|
|
|
TOOL.Defines = {
|
|
"NDK_BUILD",
|
|
"NDK_SERVER"
|
|
}
|
|
|
|
TOOL.Includes = {
|
|
"../SDK/include",
|
|
"../SDK/src"
|
|
}
|
|
|
|
TOOL.Files = {
|
|
"../SDK/include/NDK/**.hpp",
|
|
"../SDK/include/NDK/**.inl",
|
|
"../SDK/src/NDK/**.hpp",
|
|
"../SDK/src/NDK/**.inl",
|
|
"../SDK/src/NDK/**.cpp"
|
|
}
|
|
|
|
-- Excludes client-only files
|
|
TOOL.FilesExcluded = {
|
|
"../SDK/**/CameraComponent.*",
|
|
"../SDK/**/Console.*",
|
|
"../SDK/**/GraphicsComponent.*",
|
|
"../SDK/**/LightComponent.*",
|
|
"../SDK/**/ListenerComponent.*",
|
|
"../SDK/**/ListenerSystem.*",
|
|
"../SDK/**/Particle*Component.*",
|
|
"../SDK/**/ParticleSystem.*",
|
|
"../SDK/**/RenderSystem.*",
|
|
"../SDK/**/LuaBinding_Audio.*",
|
|
"../SDK/**/LuaBinding_Graphics.*",
|
|
"../SDK/**/LuaBinding_Renderer.*"
|
|
}
|
|
|
|
|
|
TOOL.Libraries = {
|
|
"NazaraCore",
|
|
"NazaraLua",
|
|
"NazaraNetwork",
|
|
"NazaraNoise",
|
|
"NazaraPhysics",
|
|
"NazaraUtility"
|
|
}
|