包含目录包含到这个层级,在.pro中加入

INCLUDEPATH += C:\eigen

QT学习之QT中使用EIGEN库

之后就可以使用EIGEN的头文件了。

#include <iostream>
#include<eigen/Geometry>

using namespace std;

int main()
{
    cout << "Hello World!" << endl;
    return 0;
}

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-03-26
  • 2022-01-21
  • 2021-06-14
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-04-11
  • 2021-11-18
  • 2022-12-23
  • 2021-12-27
  • 2022-01-15
  • 2021-08-29
相关资源
相似解决方案