OpenAssetTools/test/ZoneCommonTests.lua
2019-10-22 11:32:19 +02:00

30 lines
503 B
Lua

ZoneCommonTests = {}
function ZoneCommonTests:include()
end
function ZoneCommonTests:link()
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")
}
self:include()
ZoneCommon:include()
ZoneCommon:link()
end