forked from CURG-archive/graspit_bci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
graspit.pro
51 lines (38 loc) · 1.32 KB
/
graspit.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
TEMPLATE = app
LANGUAGE = C++
#-------------------------options--------------------------
#comment out this line for compiling in Release mode
#usually, compiling in Release mode delivers a significant gain in performance
#in MS Visual Studio *also* set the project mode to Release
#CONFIG += graspitdbg
#select collision detection engine
#possible values: graspit_collision
COLLISION = graspit_collision
#select blas and lapack libraries, Windows-only
#possible values: mkl clapack
LAPACK = clapack
#build and use interface with Columbia Grasp Database
CONFIG += cgdb
#link against the Hardware library (included with this distribution) which
#provides access to various hardware. Hardware library must be compiled
#separately and is Windows-only.
#CONFIG += hardwarelib
#link against Mosek QP solver (must be installed separately)
#CONFIG += mosek
#enable linking against boost (must be installed separately)
#CONFIG += boost
#------------------system-specific libraries---------------
CONFIG += $$COLLISION $$LAPACK
graspitdbg {
CONFIG += debug
} else {
CONFIG += release
DEFINES += GRASPIT_RELEASE
}
win32 {
include(graspit-lib-WINDOWS.pro)
} else {
include(graspit-lib-LINUX.pro)
}
#------------------GraspIt! core files---------------------
include(graspit-core.pro)