Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/xs
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2017-12-21 00:13:19 +0300
committerbubnikv <bubnikv@gmail.com>2017-12-21 00:13:19 +0300
commit1bf67b4b62c09d06eefab368b8698c291f05afde (patch)
tree76a6800aa900a7704afc50975baacfe6f36eb8ed /xs
parentfed5128b7f55e947b3bb38905283dfba81da06a2 (diff)
Added boost::regex to cmakelists.
Diffstat (limited to 'xs')
-rw-r--r--xs/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
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})