summaryrefslogtreecommitdiff
path: root/src/3rd_party
diff options
context:
space:
mode:
authorJackLivio <jack@livio.io>2018-11-09 13:18:22 -0500
committerJackLivio <jack@livio.io>2018-11-09 13:18:22 -0500
commit6441bdcc5fecb267ae1f0aa3bd6647b25822d587 (patch)
tree8cb9c85be8d80483f04c8965fbd42a576f67ce06 /src/3rd_party
parent2e262bb5c5f0d4a8462579024dfe7ef7e64487a9 (diff)
downloadsdl_core-6441bdcc5fecb267ae1f0aa3bd6647b25822d587.tar.gz
Pending cloud connection created via policies on startup
Diffstat (limited to 'src/3rd_party')
-rw-r--r--src/3rd_party/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/3rd_party/CMakeLists.txt b/src/3rd_party/CMakeLists.txt
index bdb96de417..60d68e9d60 100644
--- a/src/3rd_party/CMakeLists.txt
+++ b/src/3rd_party/CMakeLists.txt
@@ -209,7 +209,7 @@ else()
)
endif()
-find_package(Boost 1.66.0 COMPONENTS system thread date_time filesystem)
+find_package(Boost 1.66.0 COMPONENTS system thread date_time filesystem regex)
set(BOOST_LIB_SOURCE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/boost_src)
set(BOOST_LIBS_DIRECTORY ${3RD_PARTY_INSTALL_PREFIX}/lib)
SET_PROPERTY(GLOBAL PROPERTY GLOBAL_BOOST_LIBS ${BOOST_LIBS_DIRECTORY})
@@ -226,9 +226,9 @@ if (NOT ${Boost_FOUND})
URL https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.gz
DOWNLOAD_DIR ${BOOST_LIB_SOURCE_DIRECTORY}
SOURCE_DIR ${BOOST_LIB_SOURCE_DIRECTORY}
- CONFIGURE_COMMAND ./bootstrap.sh --with-libraries=system,thread,date_time,filesystem --prefix=${3RD_PARTY_INSTALL_PREFIX}
+ CONFIGURE_COMMAND ./bootstrap.sh --with-libraries=system,thread,date_time,filesystem,regex --prefix=${3RD_PARTY_INSTALL_PREFIX}
BUILD_COMMAND ./b2
- INSTALL_COMMAND ${BOOST_INSTALL_COMMAND} --with-system --with-thread --with-date_time --with-filesystem --prefix=${3RD_PARTY_INSTALL_PREFIX} > boost_install.log
+ INSTALL_COMMAND ${BOOST_INSTALL_COMMAND} --with-system --with-thread --with-date_time --with-filesystem --with-regex --prefix=${3RD_PARTY_INSTALL_PREFIX} > boost_install.log
INSTALL_DIR ${3RD_PARTY_INSTALL_PREFIX}
BUILD_IN_SOURCE true
)