mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 00:02:55 +00:00
24 lines
311 B
Lua
24 lines
311 B
Lua
catch2 = {}
|
|
|
|
function catch2:include(includes)
|
|
if includes:handle(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()
|
|
end
|