Merge pull request #276 from proller/build-boost

Dont build internal boost if USE_INTERNAL_BOOST_LIBRARY=FALSE
This commit is contained in:
alexey-milovidov 2016-12-20 19:39:10 +04:00 committed by GitHub
commit 00706ad342

View File

@ -1,6 +1,9 @@
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-old-style-cast")
add_subdirectory (libboost)
if (USE_INTERNAL_BOOST_LIBRARY)
add_subdirectory (libboost)
endif ()
add_subdirectory (libpoco)
add_subdirectory (liblz4)
add_subdirectory (libzstd)