Former-commit-id: 8130fc4bd6898f21d08bfad37e3b54676ee34b96 [formerly 9f64adc84777930b63419690bf0e454582989158] Former-commit-id: 3838886ff2303fe94b69403e1cab51cc4c99a05c
48 lines
862 B
Lua
48 lines
862 B
Lua
TOOL.Name = "SDKServer"
|
|
|
|
TOOL.Directory = "../SDK"
|
|
TOOL.Kind = "Library"
|
|
TOOL.TargetDirectory = "../SDK/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/**/RenderSystem.*",
|
|
"../SDK/**/LuaBinding_Audio.*",
|
|
"../SDK/**/LuaBinding_Graphics.*",
|
|
"../SDK/**/LuaBinding_Renderer.*"
|
|
}
|
|
|
|
|
|
TOOL.Libraries = {
|
|
"NazaraCore",
|
|
"NazaraLua",
|
|
"NazaraNetwork",
|
|
"NazaraNoise",
|
|
"NazaraPhysics",
|
|
"NazaraUtility"
|
|
}
|