From 8d3024a7e09246e44bf6d9ea14a36e6b03032e85 Mon Sep 17 00:00:00 2001 From: Stefan Boberg Date: Mon, 20 Sep 2021 10:15:12 +0200 Subject: It's not possible to compile out tests Tests are now compiled in if `ZEN_WITH_TESTS=1`, and compiled out if not. Compiling tests out reduces the footprint of the resulting executables quite significantly. --- zencore/compactbinary.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'zencore/compactbinary.cpp') diff --git a/zencore/compactbinary.cpp b/zencore/compactbinary.cpp index b508d8fe8..f4908aa9a 100644 --- a/zencore/compactbinary.cpp +++ b/zencore/compactbinary.cpp @@ -2,12 +2,12 @@ #include "zencore/compactbinary.h" +#include #include #include #include -#include "zencore/compactbinaryvalidation.h" +#include -#include #include namespace zen { @@ -1146,6 +1146,7 @@ SaveCompactBinary(BinaryWriter& Ar, const CbObjectView& Object) ////////////////////////////////////////////////////////////////////////// +#if ZEN_WITH_TESTS void uson_forcelink() { @@ -1297,5 +1298,6 @@ TEST_CASE("uson.null") CHECK(Field.IsNull() == false); } } +#endif } // namespace zen -- cgit v1.2.3