sample console-based client to demonstrate INetwork interface (refs #22)

This commit is contained in:
Mathew Sutcliffe
2013-07-31 22:02:41 +01:00
parent b8f26dce4a
commit 930be03fa6
9 changed files with 643 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
QT += core
QT -= gui
TARGET = sample_cli_client
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
DEPENDPATH += . ../../src
INCLUDEPATH += . ../../src
SOURCES += *.cpp
HEADERS += *.h
LIBS += -L../../lib -lblackcore -lblackmisc
LIBS += -L../../../vatlib -lvatlib
win32:!win32-g++*: PRE_TARGETDEPS += ../../lib/blackmisc.lib \
../../lib/blackcore.lib \
../../../vatlib/vatlib.lib
else: PRE_TARGETDEPS += ../../lib/libblackmisc.a \
../../lib/libblackcore.a \
../../../vatlib/libvatlib.a
#TODO standardize dependency locations
DESTDIR = ../../bin