-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvoxcraft-viz.pro
More file actions
51 lines (49 loc) · 982 Bytes
/
voxcraft-viz.pro
File metadata and controls
51 lines (49 loc) · 982 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
TEMPLATE = app
TARGET = voxcraft-viz
QT += core gui xml opengl concurrent
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
CONFIG += release
RC_ICONS = assets/voxcraft-viz.ico
DEFINES += QT_XML_LIB QT_OPENGL_LIB USE_OPEN_GL QT_DLL PREC_MED
INCLUDEPATH += \
. \
./src/ui \
./src/VX1 \
./src/VX2/include \
./src/QTUtils \
./src/qcustomplot \
./GeneratedFiles/$(Configuration) \
./GeneratedFiles
windows {
INCLUDEPATH += \
/boost/boost_1_73_0
# change this to where your boost is
}
unix {
INCLUDEPATH += \
/usr/include/qwt
}
windows {
LIBS += \
-lOpenGL32 \
-lglu32 \
}
unix {
LIBS += \
-lGL \
-lglut \
-lGLU \
}
LIBS += \
-lz \
-lm
################
# -lqwt-qt4 \
# -lqwt \
DEPENDPATH += .
#DESTDIR = release
#MOC_DIR += ./GeneratedFiles/release
#OBJECTS_DIR += release
UI_DIR += ./GeneratedFiles
RCC_DIR += ./GeneratedFiles
include(voxcraft-viz.pri)