vcglib/apps/sample/common.pri

24 lines
305 B
Plaintext
Raw Normal View History

2020-05-30 17:10:27 +02:00
DEPENDPATH += \
. \
../../..
INCLUDEPATH += \
. \
../../.. \
../../../eigenlib
2020-06-01 16:33:44 +02:00
CONFIG += c++11
TEMPLATE = app
2020-05-30 17:10:27 +02:00
# Mac specific Config required to avoid to make application bundles
CONFIG -= app_bundle
2016-06-09 12:46:10 +02:00
QMAKE_CXXFLAGS += -std=c++11
2020-05-30 17:10:27 +02:00
2019-11-21 17:09:05 +01:00
unix {
CONFIG(release, debug|release) {
DEFINES *= NDEBUG
}
}