How to determine the Boost version on a system?

前端 未结 12 2233
暖寄归人
暖寄归人 2020-12-04 07:46

Is there a quick way to determine the version of the Boost C++ libraries on a system?

12条回答
  •  广开言路
    2020-12-04 08:10

    Might be already answered, but you can try this simple program to determine if and what installation of boost you have :

    #include
    #include
    using namespace std;
    int main()
    {
    cout<

提交回复
热议问题