From 9465cffe79f46290032d39ba305cb8ce128563ba Mon Sep 17 00:00:00 2001 From: Eyck Jentzsch Date: Sat, 9 Apr 2022 14:55:36 +0200 Subject: [PATCH] adapt to change in dbt-rise-core --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 64f83ff..28ba1da 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -72,9 +72,9 @@ endif() target_include_directories(${PROJECT_NAME} PUBLIC incl) target_link_libraries(${PROJECT_NAME} PUBLIC softfloat scc-util jsoncpp Boost::coroutine) if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") - target_link_libraries(${PROJECT_NAME} PUBLIC -Wl,--whole-archive dbt-core -Wl,--no-whole-archive) + target_link_libraries(${PROJECT_NAME} PUBLIC -Wl,--whole-archive dbt-rise-core -Wl,--no-whole-archive) else() - target_link_libraries(${PROJECT_NAME} PUBLIC dbt-core) + target_link_libraries(${PROJECT_NAME} PUBLIC dbt-rise-core) endif() if(TARGET CONAN_PKG::elfio) target_link_libraries(${PROJECT_NAME} PUBLIC CONAN_PKG::elfio)