add qmake project
This commit is contained in:
parent
f481333dee
commit
0cad734c6c
6
Hive.pro
Normal file
6
Hive.pro
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
TEMPLATE=subdirs
|
||||||
|
|
||||||
|
SUBDIRS += libhive server
|
||||||
|
|
||||||
|
server.depends = libhive
|
||||||
|
|
||||||
12
libhive/libhive.pro
Normal file
12
libhive/libhive.pro
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
TARGET = hive
|
||||||
|
TEMPLATE = lib
|
||||||
|
|
||||||
|
CONFIG += static
|
||||||
|
|
||||||
|
SOURCES += device.cpp \
|
||||||
|
deviceclass.cpp \
|
||||||
|
deviceplugin.cpp
|
||||||
|
|
||||||
|
HEADERS += device.h \
|
||||||
|
deviceclass.h \
|
||||||
|
deviceplugin.h
|
||||||
21
server/server.pro
Normal file
21
server/server.pro
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
include(../common.pri)
|
||||||
|
|
||||||
|
TARGET = hive
|
||||||
|
TEMPLATE = app
|
||||||
|
|
||||||
|
INCLUDEPATH += ../libhive
|
||||||
|
|
||||||
|
QT += network
|
||||||
|
|
||||||
|
LIBS += -L../libhive/ -lhive
|
||||||
|
|
||||||
|
SOURCES += main.cpp \
|
||||||
|
hivecore.cpp \
|
||||||
|
jsonrpcserver.cpp \
|
||||||
|
radio433.cpp \
|
||||||
|
tcpserver.cpp
|
||||||
|
|
||||||
|
HEADERS += hivecore.h \
|
||||||
|
jsonrpcserver.h \
|
||||||
|
radio433.h \
|
||||||
|
tcpserver.h
|
||||||
Reference in New Issue
Block a user