mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
35 lines
542 B
Lua
35 lines
542 B
Lua
ZoneCommon = {}
|
|
|
|
function ZoneCommon:include()
|
|
includedirs {
|
|
path.join(ProjectFolder(), "ZoneCommon")
|
|
}
|
|
end
|
|
|
|
function ZoneCommon:link()
|
|
links {
|
|
"ZoneCommon"
|
|
}
|
|
end
|
|
|
|
function ZoneCommon:use()
|
|
|
|
end
|
|
|
|
function ZoneCommon:project()
|
|
local folder = ProjectFolder();
|
|
|
|
project "ZoneCommon"
|
|
targetdir(TargetDirectoryLib)
|
|
location "%{wks.location}/src/%{prj.name}"
|
|
kind "StaticLib"
|
|
language "C++"
|
|
|
|
files {
|
|
path.join(folder, "ZoneCommon/**.h"),
|
|
path.join(folder, "ZoneCommon/**.cpp")
|
|
}
|
|
|
|
self:include()
|
|
end
|