我試圖做到這一點在MSys的Git的bash的我贏8.1 MSVC 12安裝,以及最新cmake並混帳:如何打造CPP-NETLIB與MSVC(CMake的)
$> git clone https://github.com/cpp-netlib/cpp-netlib.git
$> cd cpp-netlib
$> git submodules update --init
$> cd deps
## here I unzip the boost folder into boost
## i.e. cpp-netlib/deps/boost/ contains bjam, bootstrap and the boost include dir
$> cd boost && bootstrap.bat && ./b2.exe
$> cd ../ && mkdir build && cd build
$> cmake -G"Visual Studio 12" -DBOOST_ROOT="../deps/boost" ../
這種失敗:和請求我設置BOOST_ROOT。
這有什麼問題?
謝謝您的幫助
運行'cmake。 -DBoost_DEBUG = ON'應輸出一堆關於CMake如何尋找提升的調試信息。如果這樣做不能讓答案清楚,那麼你可以將輸出添加到你的問題以及其中一個構建的boost庫的路徑和名稱的例子中嗎? – Fraser