From 324c60bbd3a0137367b4fdbc1467bee641f0096b Mon Sep 17 00:00:00 2001 From: Johannes Kalmbach Date: Mon, 15 Apr 2024 16:56:11 +0200 Subject: [PATCH] Fix a nasty bug. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 13bc8959d9..45f338ade8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -256,7 +256,7 @@ endif () OPTION(_NO_TIMING_TESTS "Disable timing tests on platforms where `sleep` is unreliable" OFF) if (_NO_TIMING_TESTS) - add_definitions("_D_QLEVER_NO_TIMING_TESTS") + add_definitions("-D_QLEVER_NO_TIMING_TESTS") endif () if (USE_TREE_BASED_CACHE)