-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCpuSubdivision.pro
61 lines (47 loc) · 1.16 KB
/
CpuSubdivision.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#-------------------------------------------------
#
# Project created by QtCreator 2016-12-08T16:31:55
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = cpuSubdivide
TEMPLATE = app
CONFIG += release
release: DESTDIR = build/
debug: DESTDIR = build/
INCLUDEPATH += src/
OBJECTS_DIR = $$DESTDIR/.obj
MOC_DIR = $$DESTDIR/.moc
RCC_DIR = $$DESTDIR/.qrc
UI_DIR = $$DESTDIR/.ui
SOURCES += src/main.cpp\
src/mainwindow.cpp \
src/meshSubdivision.cpp \
src/meshinitializer.cpp \
src/meshrenderer.cpp \
src/objfile.cpp \
src/mesh.cpp \
src/mainview.cpp \
src/quadmesh.cpp \
src/settings.cpp \
src/subdivider.cpp \
src/util.cpp
HEADERS += src/mainwindow.h \
src/mesh.h \
src/meshinitializer.h \
src/meshrenderer.h \
src/objfile.h \
src/quadmesh.h \
src/renderer.h \
src/settings.h \
src/mainview.h \
src/subdivider.h \
src/util.h
FORMS += src/mainwindow.ui
RESOURCES += \
src/resources.qrc
QMAKE_CXXFLAGS+= -fopenmp -lpthread
QMAKE_LFLAGS += -fopenmp -lpthread
QMAKE_CXXFLAGS_RELEASE -= -O2
QMAKE_CXXFLAGS_RELEASE += -O3