mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-16 09:34:36 +00:00
27 lines
589 B
Plaintext
27 lines
589 B
Plaintext
# this is the common include for anything compiled inside the meshlab pro
|
|
|
|
VCGDIR = ../../../vcglib
|
|
GLEWDIR = ../external/glew-1.7.0
|
|
|
|
#mac:QMAKE_CXX = g++-4.2
|
|
macx:QMAKE_CXX=clang++
|
|
|
|
# uncomment to try Eigen
|
|
# DEFINES += VCG_USE_EIGEN
|
|
# CONFIG += warn_off
|
|
|
|
|
|
#macx:QMAKE_CXX=g++-4.2
|
|
macx:QMAKE_CXX=clang++
|
|
macx: {
|
|
contains(QMAKE_CXX,clang++) {
|
|
MACLIBDIR = ../../external/lib/macx64
|
|
} else {
|
|
MACLIBDIR = ../../external/lib/macx32
|
|
}
|
|
}
|
|
|
|
# the following line is needed to avoid mismatch between
|
|
# the awful min/max macros of windows and the limits max
|
|
win32:DEFINES += NOMINMAX
|