add qmake project

This commit is contained in:
Michael Zanetti 2013-12-30 16:52:29 +01:00
parent f481333dee
commit 0cad734c6c
3 changed files with 39 additions and 0 deletions

6
Hive.pro Normal file
View File

@ -0,0 +1,6 @@
TEMPLATE=subdirs
SUBDIRS += libhive server
server.depends = libhive

12
libhive/libhive.pro Normal file
View 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
View 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