Former-commit-id: 3cdf26b3497439c344bbc8b3738df6a316f6bef6 [formerly c25cd61df2ea180fa2d79585bd031027c75f2007] Former-commit-id: 96a3ee99070e34f05b9dabb582ee878a82801c65
31 lines
533 B
Lua
31 lines
533 B
Lua
TOOL.Name = "SDK"
|
|
|
|
TOOL.Directory = "../SDK"
|
|
TOOL.Kind = "Library"
|
|
TOOL.TargetDirectory = "../SDK/lib"
|
|
|
|
TOOL.Defines = {
|
|
"NDK_BUILD"
|
|
}
|
|
|
|
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"
|
|
}
|
|
|
|
TOOL.Libraries = function()
|
|
local libraries = {}
|
|
for k,v in pairs(NazaraBuild.Modules) do
|
|
table.insert(libraries, "Nazara" .. v.Name)
|
|
end
|
|
|
|
return libraries
|
|
end |