-
Notifications
You must be signed in to change notification settings - Fork 0
/
lidar_livox.pro
59 lines (35 loc) · 1.65 KB
/
lidar_livox.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
52
53
54
55
56
57
58
59
#========================================================================================
TARGET = lidar_livox
#========================================================================================
DEFINES += GUI
#========================================================================================
QT += core
QT -= gui
QT += network
#========================================================================================
TEMPLATE += app
CONFIG *= link_pkgconfig
CONFIG += c++11
#========================================================================================
DEFINES += QT_DEPRECATED_WARNINGS
MAIN_DIR = $$PWD
#========================================================================================
SDK_DIR = $$PWD/livox_sdk
include( $$SDK_DIR/sdk_core/sdk_core.pri )
VLIBS_DIR = $$PWD/vlibs2
include( $$PWD/vlibs.pri )
#========================================================================================
SOURCES += main.cpp
#========================================================================================
include( $$PWD/config_reader/config_reader.pri )
include( $$PWD/lidar/lidar.pri )
include( $$PWD/defs/defs.pri )
contains( DEFINES, GUI ): include( $$PWD/plot/plot.pri )
#========================================================================================
OTHER_FILES += cfg/*
OTHER_FILES += scripts/*
#========================================================================================
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /tmp/$${TARGET}/bin
!isEmpty( target.path ): INSTALLS += target
#========================================================================================