前面学习了很多cmake的使用,这节我们来学习在cmake中加载第三方库,我就写一些我用过的库。
加载boost库
源码路径:demo.
~~~~ 创建一个新的目录,创建文件main.cpp,例子我是在网上找的:
#include <string>
#include <iostream>
#include <boost/version.hpp>
#include <boost/timer.hpp>
using namespace std;
int main()
{
boost::timer t;
cout << "max timespan: " << t.elapsed_max() / 3600 << "h" << endl;
cout << "min t