what is BOOST_ROOT?

匿名 (未验证) 提交于 2019-12-03 01:33:01

问题:

I'm trying to build x64 version of http://code.google.com/p/quickfast/ That's how build scripts use %BOOST_ROOT%:

set SETUP_CHECKING=BOOST_ROOT=%BOOST_ROOT% if not exist "%BOOST_ROOT%\boost" goto setup_is_bad  includes += $(BOOST_ROOT)/include  set RELEASE_PATH=%QUICKFAST_ROOT%\bin;%QUICKFAST_ROOT%\Output\Release;%MPC_ROOT%;%BOOST_ROOT%\lib; 

So build script expects following file/folders:

%BOOST_ROOT%\boost $(BOOST_ROOT)/include %BOOST_ROOT%\lib 

I've downloaded/builded boost and there are no lib or include folder. That's what my boost folder contains:

Where can I find x64 boost version that contains lib include and boost folders?

回答1:

Include files are in folder %BOOST_ROOT%\boost
Libraries are in %BOOST_ROOT%\libs

Change your build script accordingly.

Example:

%BOOST_ROOT%: c:\bin\boost_1_49_0 Includes: %BOOST_ROOT%\boost Libs: %BOOST_ROOT%\stage\lib 


文章来源: what is BOOST_ROOT?
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!