Skip to content

Instantly share code, notes, and snippets.

@bingmann
bingmann / CMakeLists.txt
Last active January 30, 2020 15:08
Build a "mini-boost" library directly from cmake including only some of the library-needing boost parts.
### use Boost libraries ###
include(FetchContent)
FetchContent_Populate(
boost-src
URL https://dl.bintray.com/boostorg/release/1.71.0/source/boost_1_71_0.tar.bz2
URL_HASH MD5=4cdf9b5c2dc01fb2b7b733d5af30e558
SOURCE_DIR extlib/boost
)