43 lines
752 B
Lua
43 lines
752 B
Lua
TOOL.Name = "SDKServer"
|
|
|
|
TOOL.Directory = "../SDK/lib"
|
|
TOOL.Kind = "Library"
|
|
|
|
TOOL.Defines = {
|
|
"NDK_BUILD",
|
|
"NDK_SERVER"
|
|
}
|
|
|
|
TOOL.Includes = {
|
|
"../SDK/include"
|
|
}
|
|
|
|
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.FilesExclusion = {
|
|
"../SDK/**/CameraComponent.*",
|
|
"../SDK/**/Console.*",
|
|
"../SDK/**/GraphicsComponent.*",
|
|
"../SDK/**/LightComponent.*",
|
|
"../SDK/**/ListenerComponent.*",
|
|
"../SDK/**/ListenerSystem.*",
|
|
"../SDK/**/RenderSystem.*",
|
|
"../SDK/**/LuaAPI_Audio.*",
|
|
"../SDK/**/LuaAPI_Graphics.*",
|
|
}
|
|
|
|
TOOL.Libraries = {
|
|
"NazaraCore",
|
|
"NazaraLua",
|
|
"NazaraNoise",
|
|
"NazaraPhysics",
|
|
"NazaraUtility"
|
|
}
|