要用xx
库,编译boost时就指定--with-xx
。例如:
# 下载并解压boost_1.58# 进入boost_1.58目录bjam.exe toolset=msvc-14.0 --build-type=complete address-model=64 --with-serialization --with-system --with-date_time --with-regex --with-filesystem --with-timer --with-chrono --with-program_options --with-thread --with-python --stagedir="test"
说明:
msvc-14.0表示visual studio 2015
--stagedir指定的目录为test,它下面有个lib目录,把编译好的dll和lib都放在这里了。