-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHandguidingexample.pro
More file actions
41 lines (33 loc) · 1.02 KB
/
Handguidingexample.pro
File metadata and controls
41 lines (33 loc) · 1.02 KB
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
QT += core gui sql
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Handguidingexample
TEMPLATE = app
CONFIG += c++11
DEFINES += _GLIBCXX_USE_CXX11_ABI=0
#********linking library **********************************
unix{
#32bit system
contains(QT_ARCH, i386){
LIBS += -L$$PWD/lib/lib32/ -lauborobotcontroller
# LIBS += -L$$PWD/lib/lib32/libauborobotcontroller.a
LIBS += $$PWD/lib/lib32/libotgLib.a
}
#64bit system
contains(QT_ARCH, x86_64){
LIBS += -L$$PWD/lib/lib64/ -lauborobotcontroller
# LIBS += $$PWD/lib/lib64/libotgLib.a
}
}
LIBS += -lpthread
include(./ftsensor/ftsensor.pri)
include(./utility/utility.pri)
INCLUDEPATH += $$PWD/include
HEADERS += $$PWD/include/mainwindow.h \
$$PWD/include/FTSensorDataProcess.h \
include/robotcontrol.h \
SOURCES += $$PWD/src/main.cpp \
$$PWD/src/mainwindow.cpp \
$$PWD/src/FTSensorDataProcess.cpp \
src/robotcontrol.cpp
FORMS += mainwindow.ui
QT += serialport