mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
30 lines
503 B
Lua
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
|