From 31497d804cc875d147721e965c46636e3941683f Mon Sep 17 00:00:00 2001 From: Jan Date: Wed, 10 Feb 2021 16:47:16 +0100 Subject: [PATCH] Change catch2 version to 2.13.4 --- thirdparty/catch2 | 2 +- thirdparty/catch2.lua | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 thirdparty/catch2.lua 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