mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 00:02:55 +00:00
44 lines
798 B
Lua
44 lines
798 B
Lua
ZoneCodeGeneratorTests = {}
|
|
|
|
function ZoneCodeGeneratorTests:include()
|
|
|
|
end
|
|
|
|
function ZoneCodeGeneratorTests:link()
|
|
links "ZoneCommonTests"
|
|
end
|
|
|
|
function ZoneCodeGeneratorTests:use()
|
|
|
|
end
|
|
|
|
function ZoneCodeGeneratorTests:project()
|
|
local folder = TestFolder();
|
|
|
|
project "ZoneCodeGeneratorTests"
|
|
targetdir(TargetDirectoryTest)
|
|
location "%{wks.location}/test/%{prj.name}"
|
|
kind "SharedLib"
|
|
language "C#"
|
|
|
|
files {
|
|
path.join(folder, "ZoneCodeGeneratorTests/**.cs")
|
|
}
|
|
|
|
vpaths { ["*"] = "test/ZoneCodeGeneratorTests" }
|
|
|
|
nuget {
|
|
"Moq:4.13.1",
|
|
"MSTest.TestFramework:2.0.0",
|
|
"MSTest.TestAdapter:2.0.0"
|
|
}
|
|
|
|
links {
|
|
"System",
|
|
"System.Core",
|
|
"System.Data"
|
|
}
|
|
|
|
ZoneCodeGenerator:link()
|
|
end
|