mirror of
https://github.com/CloudCompare/PoissonRecon.git
synced 2026-08-30 17:10:28 +08:00
20 lines
493 B
Prolog
Executable File
20 lines
493 B
Prolog
Executable File
INCLUDEPATH += ../../../../vcglib
|
|
INCLUDEPATH -= .
|
|
CONFIG += console stl
|
|
TEMPLATE = app
|
|
# Mac specific Config required to avoid to make application bundles
|
|
CONFIG -= app_bundle
|
|
CONFIG += console warn_off
|
|
SOURCES += Src/PoissonRecon.cpp \
|
|
Src/MarchingCubes.cpp \
|
|
Src/PlyFile.cpp \
|
|
Src/CmdLineParser.cpp \
|
|
Src/Factor.cpp \
|
|
Src/Geometry.cpp
|
|
|
|
QMAKE_CXXFLAGS+=-fopenmp -Wsign-compare
|
|
macx:QMAKE_CXXFLAGS-= -fopenmp
|
|
|
|
TARGET=PoissonRecon
|
|
|