From ebb54ae63d59c7aff4856def9ec784f0a23b64fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffan=20S=C3=B8lvsten?= <201505832@post.au.dk> Date: Thu, 9 May 2024 10:55:18 +0200 Subject: [PATCH] Update to latest version of BanditCPP (fixes errors on GCC 13.2.0) --- external/bandit | 2 +- test/CMakeLists.txt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/external/bandit b/external/bandit index bc7032ca4..f297efd8a 160000 --- a/external/bandit +++ b/external/bandit @@ -1 +1 @@ -Subproject commit bc7032ca428c1d1ffc2e9cdff158d031a7b441a7 +Subproject commit f297efd8aecc6e9ce8f84e33264898bf77f9cb73 diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index f0e1f1ca9..b0e299023 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -6,7 +6,8 @@ macro(add_test NAME SOURCE) # Link up with Bandit set(BANDIT_FLAGS "--reporter=info --colorizer=light") - target_include_directories (test-${NAME} PRIVATE ${PROJECT_SOURCE_DIR}/external) + target_include_directories (test-${NAME} + PRIVATE ${PROJECT_SOURCE_DIR}/external/bandit) # Link with Adiar target_link_libraries(test-${NAME} adiar)