From a59d467e1dd70be66df40af879df0695d46ddb70 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 4 Jul 2022 10:04:18 +0200 Subject: [PATCH] link etl lib explicitely --- .run/fsfw-example-hosted.run.xml | 2 +- CMakeLists.txt | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.run/fsfw-example-hosted.run.xml b/.run/fsfw-example-hosted.run.xml index 386b7fd..9d5e7e5 100644 --- a/.run/fsfw-example-hosted.run.xml +++ b/.run/fsfw-example-hosted.run.xml @@ -1,5 +1,5 @@ - + diff --git a/CMakeLists.txt b/CMakeLists.txt index 312f3a1..3cc1859 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -114,7 +114,8 @@ target_link_libraries( # Add include paths for all sources. target_include_directories( ${TARGET_NAME} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} - ${CMAKE_CURRENT_BINARY_DIR} ${FSFW_CONFIG_PATH}) + ${CMAKE_CURRENT_BINARY_DIR} ${FSFW_CONFIG_PATH} + etl::etl) if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") target_link_options(${TARGET_NAME} PRIVATE "-Wl,-Map=${TARGET_NAME}.map")