-
Notifications
You must be signed in to change notification settings - Fork 10
/
cg3.pri
73 lines (58 loc) · 1.1 KB
/
cg3.pri
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
62
63
64
65
66
67
68
69
70
71
72
73
#
# This file is part of cg3lib: https://github.com/cg3hci/cg3lib
# This Source Code Form is subject to the terms of the GNU GPL 3.0
#
# @author Alessandro Muntoni ([email protected])
# @author Stefano Nuvoli ([email protected])
#
CONFIG += c++11
DEFINES += CG3_QMAKE
CG3_STATIC {
message(cg3 static)
DEFINES += CG3_STATIC
}
else {
CG3_VIEWER_STATIC {
message("cg3 header only, viewer static")
}
else {
message(cg3 header only)
}
}
CG3_ALL {
CONFIG += CG3_CORE CG3_CGAL CG3_CINOLIB CG3_LIBIGL CG3_VCGLIB CG3_VORO++ CG3_VIEWER
}
CG3_CORE {
include (cg3/core.pri)
}
CG3_CGAL {
include (cg3/cgal.pri)
}
CG3_CINOLIB {
include (cg3/cinolib.pri)
}
CG3_LIBIGL {
include (cg3/libigl.pri)
}
CG3_VCGLIB {
include (cg3/vcglib.pri)
}
CG3_VORO++ {
include (cg3/voro++.pri)
}
qt {
CG3_VIEWER {
include (cg3/viewer.pri)
}
}
CG3_DEVELOPMENT {
include (cg3/development.pri)
}
CG3_DEPRECATED {
include (cg3/deprecated.pri)
}
DISTFILES += \
$$PWD/LICENSE \
$$PWD/README.md \
$$PWD/TODO.md
INCLUDEPATH += $$PWD