From 677a8fee6c1d3f938d8bba9e99ff1d6d689e54b2 Mon Sep 17 00:00:00 2001 From: Alexander Puck Neuwirth Date: Fri, 16 Feb 2024 21:43:13 +0100 Subject: [PATCH] Remove -mt boost suffic All boost is thread safe by now. --- src/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d58a482..bb35723 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -8,8 +8,8 @@ IF (Boost_FOUND) Message("Boost found" ${Boost_LIBRARY_DIR}) INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIR}) #MESSAGE("Boost was found" ${Boost_INCLUDE_DIR}) - TARGET_LINK_LIBRARIES (cipi boost_thread-mt) + TARGET_LINK_LIBRARIES (cipi boost_thread) ENDIF (Boost_FOUND) INSTALL(PROGRAMS cipi DESTINATION bin) -INSTALL(FILES PARAM DESTINATION share/doc/cipi-${CIPI_VERSION}) \ No newline at end of file +INSTALL(FILES PARAM DESTINATION share/doc/cipi-${CIPI_VERSION})