From 1bf67b4b62c09d06eefab368b8698c291f05afde Mon Sep 17 00:00:00 2001 From: bubnikv Date: Wed, 20 Dec 2017 22:13:19 +0100 Subject: [PATCH] Added boost::regex to cmakelists. --- xs/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xs/CMakeLists.txt b/xs/CMakeLists.txt index 07442f248..2f8eb14c5 100644 --- a/xs/CMakeLists.txt +++ b/xs/CMakeLists.txt @@ -440,7 +440,7 @@ if(SLIC3R_STATIC) # Use boost libraries linked statically to the C++ runtime. # set(Boost_USE_STATIC_RUNTIME ON) endif() -find_package(Boost REQUIRED COMPONENTS system filesystem thread log locale) +find_package(Boost REQUIRED COMPONENTS system filesystem thread log locale regex) if(Boost_FOUND) include_directories(${Boost_INCLUDE_DIRS}) target_link_libraries(XS ${Boost_LIBRARIES})