48 lines
866 B
Lua
48 lines
866 B
Lua
TOOL.Name = "SDKServer"
|
|
|
|
TOOL.CopyTargetToExampleDir = true
|
|
|
|
TOOL.Directory = "../SDK/lib"
|
|
TOOL.Kind = "Library"
|
|
|
|
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"
|
|
}
|
|
|
|
-- Exlude 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"
|
|
}
|