-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJetPipes.pro
More file actions
35 lines (28 loc) · 750 Bytes
/
JetPipes.pro
File metadata and controls
35 lines (28 loc) · 750 Bytes
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
QT += 3dcore 3drender 3dinput 3dquick 3dlogic qml quick 3dquickextras
CONFIG += c++11
DEFINES += QT_DEPRECATED_WARNINGS
SOURCES += \
ObstaclesModel.cpp \
RenderAttributes.cpp \
Scene.cpp \
Spline.cpp \
TubeGeometry.cpp \
TubeModel.cpp \
main.cpp
RESOURCES += qml.qrc \
resources.qrc
QML_IMPORT_PATH =
QML_DESIGNER_IMPORT_PATH =
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
win32: RC_ICONS += favicon.ico
HEADERS += \
Config.hpp \
ObstaclesModel.hpp \
RenderAttributes.hpp \
Scene.hpp \
Spline.hpp \
TubeGeometry.hpp \
TubeModel.hpp