mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 00:25:44 +00:00
25 lines
326 B
Lua
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
|