-
Notifications
You must be signed in to change notification settings - Fork 0
/
hms.pro
45 lines (40 loc) · 1.06 KB
/
hms.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
HEADERS = mainwindow.h \
keyboard.h \
hidapi.h \
checkthread.h \
crc8.h \
rb.h \
rs232.h \
relayb.h \
connection.h \
logview.h \
adduser.h \
usersview.h
SOURCES = mainwindow.cpp \
main.cpp \
keyboard.cpp \
hid-libusb.c \
crc8.c \
rb.c \
rs232.c \
checkthread.cpp \
relayb.cpp \
logview.cpp \
adduser.cpp \
usersview.cpp
DESTDIR = bin/
LIBS += -L./BIN
LIBS += -L/usr/local/lib -lusb-1.0
INCLUDEPATH += $$quote(/usr/include/libusb-1.0)
# install
target.path = $$[QT_INSTALL_EXAMPLES]/mainwindows/menus
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS menus.pro
sources.path = $$[QT_INSTALL_EXAMPLES]/mainwindows/menus
INSTALLS += target sources
QT += sql
symbian {
TARGET.UID3 = 0xA000CF66
include($$PWD/../../symbianpkgrules.pri)
}
maemo5: include($$PWD/../../maemo5pkgrules.pri)
simulator: warning(This example might not fully work on Simulator platform)