From 1eaa55d2d4f62e73204d8f68ce05fdebb1ab827c Mon Sep 17 00:00:00 2001 From: iphydf Date: Mon, 8 Oct 2018 23:33:40 +0000 Subject: [PATCH] Include `CTest` in CMakeLists.txt to get valgrind support. We can now run `ctest --output-on-failure -D ExperimentalMemCheck -j 50` to run valgrind on all tests. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9db71402..c82f8a69 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -53,6 +53,7 @@ message("SOVERSION: ${SOVERSION}") ################################################################################ include(ApiDsl) +include(CTest) include(ModulePackage) include(StrictAbi) include(GNUInstallDirs)