Files
PoissonRecon/PoissonRecon.pro
T

33 lines
926 B
Prolog
Raw Normal View History

QT -= core gui
2015-11-19 17:29:53 +01:00
INCLUDEPATH -= .
### begin mac specific part #################
# On OSX xcode clang does NOT support OpenMP.
# Use these two lines if you installed an alternative clang with macport
# (something like 'sudo port install clang-3.9')
macx:QMAKE_CXX = clang++-mp-3.9
macx:QMAKE_LFLAGS += -L/opt/local/lib/libomp -lomp
# Use this if you want to use the standard clang distributed with xcode
# macx:QMAKE_CXXFLAGS-= -fopenmp
2015-11-19 17:29:53 +01:00
# Mac specific Config required to avoid to make application bundles
CONFIG -= app_bundle
### end of mac specific part #################
QMAKE_CXXFLAGS+=-fopenmp -Wsign-compare -O3 -DRELEASE -funroll-loops -ffast-math
2015-11-19 17:29:53 +01:00
CONFIG += console warn_off
TEMPLATE = app
2015-11-19 17:29:53 +01:00
SOURCES += Src/PoissonRecon.cpp \
Src/MarchingCubes.cpp \
Src/PlyFile.cpp \
Src/CmdLineParser.cpp \
Src/Factor.cpp \
Src/Geometry.cpp
TARGET=PoissonRecon