From 8e0fdc80b0d214f4e754280ba266493151e2fb61 Mon Sep 17 00:00:00 2001 From: TheAssassin Date: Wed, 28 Nov 2018 11:07:20 +0100 Subject: [PATCH] Fix linking issues, mk. 2 --- lib/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index e384155..d939113 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -122,7 +122,7 @@ if(NOT USE_SYSTEM_BOOST) add_library(boost_lexical_cast INTERFACE) set_property(TARGET boost_lexical_cast PROPERTY INTERFACE_INCLUDE_DIRECTORIES "$") set_property(TARGET boost_lexical_cast PROPERTY INTERFACE_LINK_LIBRARIES "boost_config") - target_link_libraries(boost_lexical_cast INTERFACE boost_concept_check boost_numeric_conversion boost_array boost_container boost_math boost_system) + target_link_libraries(boost_lexical_cast INTERFACE boost_concept_check boost_numeric_conversion boost_array boost_container boost_math boost_integer) endif() if(BUILD_TESTING)