blob: 8344f00690d25d1165a43df27d2f79b1482c1d36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Optionally specify location of Eigen2 using the
# EIGEN2DIR env. variable
EIGEN2_DIR = $$(EIGEN2DIR)
!isEmpty(EIGEN2_DIR) {
INCLUDEPATH += $$EIGEN2_DIR
}
else {
macx {
INCLUDEPATH += /opt/local/include/eigen2
}
else {
INCLUDEPATH += /usr/include/eigen2
}
}
|