-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.pro
36 lines (27 loc) · 838 Bytes
/
test.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
#-------------------------------------------------
#
# Project created by QtCreator 2019-01-30T15:59:49
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = lidar_calibration
TEMPLATE = app
CONFIG += static
QMAKE_CXXFLAGS += -std=c++14
LIBS += -lboost_system -lboost_filesystem -lboost_thread -lpcl_visualization -lpcl_common -lpcl_io -lpcl_kdtree -lpcl_search
SOURCES += main.cpp \
mainwindow.cpp \
addlidardialog.cpp \
lidar_driver/driver.cpp \
lidar_driver/input.cpp \
lidar_driver/rawdata.cpp \
lidar_driver/lidar.cpp
HEADERS += mainwindow.h \
addlidardialog.h \
lidar_driver/driver.h \
lidar_driver/input.h \
lidar_driver/rawdata.h \
lidar_driver/lidar.h
FORMS += mainwindow.ui \
addlidardialog.ui