blob: e8bb42c1c320f4611483be8f7317340faf333622 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# 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 {
CONFIG(mingw-cross-env) {
INCLUDEPATH += mingw-cross-env/include/eigen2
}
else {
INCLUDEPATH += /usr/include/eigen2
}
}
}
|