1TARGET = qt_poly2tri
2
3CONFIG += staticlib warn_off optimize_full
4
5load(qt_helper_lib)
6
7# workaround for QTBUG-31586
8contains(QT_CONFIG, c++11): CONFIG += c++11
9
10gcc {
11    QMAKE_CFLAGS_OPTIMIZE_FULL += -ffast-math
12    !clang:!intel_icc:!rim_qcc: QMAKE_CXXFLAGS_WARN_ON += -Wno-error=return-type
13}
14
15HEADERS +=  poly2tri.h \
16            common/shapes.h \
17            common/utils.h \
18            sweep/advancing_front.h \
19            sweep/cdt.h \
20            sweep/sweep.h \
21            sweep/sweep_context.h
22
23SOURCES += common/shapes.cpp \
24           sweep/sweep_context.cpp \
25           sweep/cdt.cpp \
26           sweep/sweep.cpp \
27           sweep/advancing_front.cpp
28