Add dumper for DDS and texture converter for reordering colors

This commit is contained in:
Jan
2020-09-04 12:51:13 +02:00
parent 362094b6f0
commit ccef1dca28
11 changed files with 708 additions and 362 deletions

43
test/ObjCommonTests.lua Normal file
View File

@ -0,0 +1,43 @@
ObjCommonTests = {}
function ObjCommonTests:include()
end
function ObjCommonTests:link()
if References:link("ObjCommonTests") then
links "ObjCommonTests"
end
end
function ObjCommonTests:use()
end
function ObjCommonTests:project()
References:reset()
local folder = TestFolder();
project "ObjCommonTests"
targetdir(TargetDirectoryTest)
location "%{wks.location}/test/%{prj.name}"
kind "SharedLib"
language "C++"
files {
path.join(folder, "ObjCommonTests/**.h"),
path.join(folder, "ObjCommonTests/**.cpp")
}
vpaths {
["*"] = {
path.join(folder, "ObjCommonTests"),
path.join(BuildFolder(), "src/ZoneCode")
}
}
self:include()
ObjCommon:include()
ObjCommon:link()
end