From 85600fcd57fe43ced31ca97023eb2c1103fb4d85 Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Thu, 16 Dec 2021 16:00:12 +0100 Subject: [PATCH] add Eigen as a dependency --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index edb0eee..b0423ab 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -101,7 +101,7 @@ ADD_LIBRARY( # define the dependencies TARGET_INCLUDE_DIRECTORIES(ArrivalMANager INTERFACE EuroScope) TARGET_LINK_LIBRARIES(ArrivalMANager EuroScope libcurl GSL Shlwapi) -TARGET_LINK_LIBRARIES(ArrivalMANager cppzmq protobuf jsoncpp GeographicLib) +TARGET_LINK_LIBRARIES(ArrivalMANager cppzmq protobuf jsoncpp GeographicLib Eigen) # configure the debugger and update the linker flags IF(MSVC)