Former-commit-id: ffaf52748cda6abf396dbe79284c6e011e21af95 [formerly 581bef8e7e4973147111c1ae2dbe204a2e2fe619] [formerly 182b31ea267d0d629dd1bafb9a067a2a70b4b234 [formerly 4e59f7f0ee7a2768cbc1d9e0a7923dda498ffda0]] Former-commit-id: 82e66db889b74c6614949d0755eae9b41dc889fa [formerly faffe8c22d70e23c041fad00dc735b268fc07d90] Former-commit-id: 32e116644ab6213d23f6e819bd8341ae512a74e2
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"
|
|
}
|