From 7918240242737a3193cd2be339a63a5e754508f9 Mon Sep 17 00:00:00 2001 From: Enrico Seiler Date: Wed, 23 Oct 2024 20:29:59 +0200 Subject: [PATCH] [INFRA] Change linkage order Such that hibf's std flag overwrites seqan3's flag --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 55680001..47a3e2ea 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -12,7 +12,7 @@ if (TARGET chopper::interface) endif () add_library (chopper_interface INTERFACE) -target_link_libraries (chopper_interface INTERFACE seqan::hibf sharg::sharg seqan3::seqan3) +target_link_libraries (chopper_interface INTERFACE sharg::sharg seqan3::seqan3 seqan::hibf) target_include_directories (chopper_interface INTERFACE "${PROJECT_SOURCE_DIR}/include") target_compile_options (chopper_interface INTERFACE "-pedantic" "-Wall" "-Wextra") add_library (chopper::interface ALIAS chopper_interface)