-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTerrain3D.pro
44 lines (36 loc) · 952 Bytes
/
Terrain3D.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
#-----------------------------------------------------------
#
# Terrain-3D
# 3D terrain visualizer using Qt 3d libraries
#
# Terrain-3D is a test project for CRITERIA-3D distribution
# https://github.com/ARPA-SIMC/CRITERIA3D
# Author: Fausto Tomei
#
#-----------------------------------------------------------
QT += core gui widgets
greaterThan(QT_MAJOR_VERSION, 5): QT += core5compat openglwidgets
TARGET = TERRAIN_3D
TEMPLATE = app
CONFIG += c++11
INCLUDEPATH += gis
SOURCES += main.cpp \
geometry.cpp \
glWidget.cpp \
gis/color.cpp \
gis/gis.cpp \
gis/gisIO.cpp \
mainwindow.cpp \
viewer3D.cpp
HEADERS += \
geometry.h \
glWidget.h \
gis/commonConstants.h \
gis/color.h \
gis/gis.h \
mainwindow.h \
viewer3D.h
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target