-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtresta.pro
59 lines (52 loc) · 1.68 KB
/
tresta.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
#-------------------------------------------------
#
# Project created by QtCreator 2012-12-26T06:24:06
#
#-------------------------------------------------
QMAKE_CXXFLAGS += -std=c++11 -fopenmp
macx{
QMAKE_CXXFLAGS += -stdlib=libc++ -mmacosx-version-min=10.10
LIBS += -stdlib=libc++ -mmacosx-version-min=10.10
}
CONFIG += c++11 fopenmp
QT += core gui opengl concurrent
TARGET = tresta
TEMPLATE = app
INCLUDEPATH += $$PWD \
$$PWD/ext \
$$PWD/ext/eigen-3.2.5 \
$$PWD/ext/boost_1_59_0 \
$$PWD/ext/rapidjson/include \
$$PWD/include
SOURCES += src/color_dialog.cpp \
src/cylinder.cpp \
src/demo_dialog.cpp \
src/main.cpp \
src/mainwindow.cpp \
src/ply_exporter.cpp \
src/setup.cpp \
src/shape.cpp \
src/sphere.cpp \
src/truss_scene.cpp \
src/window.cpp \
ext/boost_1_59_0/libs/smart_ptr/src/sp_collector.cpp \
ext/boost_1_59_0/libs/smart_ptr/src/sp_debug_hooks.cpp
HEADERS += include/abstract_scene.h \
include/color_dialog.h \
include/containers.h \
include/csv_parser.h \
include/cylinder.h \
include/demo_dialog.h \
include/glassert.h \
include/mainwindow.h \
include/ply_exporter.h \
include/setup.h \
include/shape.h \
include/sphere.h \
include/truss_scene.h \
include/window.h
OTHER_FILES += assets/shaders/*
RESOURCES += resources.qrc
FORMS += src/mainwindow.ui
ICON = assets/logo_64x64.png
DISTFILES += assets/shaders/*