diff --git a/thirdparty/catch2 b/thirdparty/catch2 index 3eade52f..de6fe184 160000 --- a/thirdparty/catch2 +++ b/thirdparty/catch2 @@ -1 +1 @@ -Subproject commit 3eade52fc0338b2aa81d23cf0cd191f455477746 +Subproject commit de6fe184a9ac1a06895cdd1c9b437f0a0bdf14ad diff --git a/thirdparty/catch2.lua b/thirdparty/catch2.lua new file mode 100644 index 00000000..61a90ea2 --- /dev/null +++ b/thirdparty/catch2.lua @@ -0,0 +1,24 @@ +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