mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 00:02:55 +00:00
44 lines
738 B
Lua
44 lines
738 B
Lua
ZoneCommonTests = {}
|
|
|
|
function ZoneCommonTests:include()
|
|
|
|
end
|
|
|
|
function ZoneCommonTests:link()
|
|
links "ZoneCommonTests"
|
|
end
|
|
|
|
function ZoneCommonTests:use()
|
|
|
|
end
|
|
|
|
function ZoneCommonTests:project()
|
|
local folder = TestFolder();
|
|
|
|
project "ZoneCommonTests"
|
|
targetdir(TargetDirectoryTest)
|
|
location "%{wks.location}/test/%{prj.name}"
|
|
kind "SharedLib"
|
|
language "C++"
|
|
|
|
files {
|
|
path.join(folder, "ZoneCommonTests/**.h"),
|
|
path.join(folder, "ZoneCommonTests/**.cpp"),
|
|
ZoneCode:allTestFiles()
|
|
}
|
|
|
|
vpaths {
|
|
["*"] = {
|
|
path.join(folder, "ZoneCommonTests"),
|
|
path.join(BuildFolder(), "src/ZoneCode")
|
|
}
|
|
}
|
|
|
|
self:include()
|
|
ZoneCommon:include()
|
|
|
|
ZoneCommon:link()
|
|
|
|
ZoneCode:use()
|
|
end
|