• [问题求助] CodeArts IDE for c/c++ 中如何配置使用boost库
    我在windows 11上编译安装了boost 1.84,并且写了一段测试代码,如下:#include <iostream>#include <boost/version.hpp>#include <boost/config.hpp>using namespace std;int main() {    cout << BOOST_VERSION << endl;    cout << BOOST_LIB_VERSION << endl;    cout << BOOST_PLATFORM << endl;    cout << BOOST_COMPILER << endl;    cout << BOOST_STDLIB << endl;    return 0;}构建时候显示找不到头文件。fatal error: boost/version.hpp: No such file or directory     2 | #include <boost/version.hpp>       |          ^~~~~~~~~~~~~~~~~~~请问我应该咋设置头文件搜索路径。谢谢!