#include "stdafx.h"
#include <boost\version.hpp>
#include <boost\config.hpp>
#include <iostream>
using namespace std;

int main()
{
    cout << "boost 版本:" << BOOST_VERSION << endl;
    cout << "boost lib 版本:" << BOOST_LIB_VERSION << endl;
    cout << "操作系统:" << BOOST_PLATFORM << endl;
    cout << "编译器:" << BOOST_COMPILER << endl;
    cout << "标准库:" << BOOST_STDLIB << endl;
    system("pause");
    return 0;
}

 

相关文章:

  • 2022-12-23
  • 2021-10-09
  • 2021-05-09
  • 2021-11-30
  • 2021-10-08
  • 2022-02-12
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-12
  • 2021-05-24
  • 2021-05-23
  • 2021-05-17
  • 2021-10-20
  • 2021-11-26
  • 2022-12-23
相关资源
相似解决方案