From c74f8696e87c1195468ce2a77b1bd1defc4004f9 Mon Sep 17 00:00:00 2001 From: Valerio Bertone Date: Tue, 11 Aug 2020 14:15:58 +0200 Subject: [PATCH] Update CMakeLists.txt --- CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 72a1cca8..8d09be10 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -56,6 +56,9 @@ find_package(ElementaryUtils REQUIRED) # find libraries: NumA++ find_package(NumA++ REQUIRED) +# find libraries: GSL +find_package(GSL REQUIRED) + # directories containing headers include_directories(${QT_INCLUDE_DIRS} ${SFML_INCLUDE_DIR} ${CLN_INCLUDE_DIR} ${ELEMENTARY_UTILS_INCLUDE_DIR} ${NUMA_INCLUDE_DIR}) include_directories(include) @@ -99,6 +102,8 @@ target_link_libraries( ${ELEMENTARY_UTILS_LIBRARIES} ${NUMA_LIBRARIES} + + ${GSL_LIBRARIES} ) # install -- GitLab