2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-07-09 04:31:49 +00:00
Files
OpenAssetTools/thirdparty/catch2.lua
2021-02-10 16:47:16 +01:00

25 lines
326 B
Lua

catch2 = {}
function catch2:include()
if References:include(self:name()) then
includedirs {
path.join(ThirdPartyFolder(), "catch2", "single_include")
}
end
end
function catch2:link()
end
function catch2:use()
end
function catch2:name()
return "catch2"
end
function catch2:project()
References:reset()
end