mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-08-01 06:06:09 +08:00
sample console-based client to demonstrate INetwork interface (refs #22)
This commit is contained in:
27
samples/cli_client/sample_cli_client.pro
Normal file
27
samples/cli_client/sample_cli_client.pro
Normal 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
|
||||
Reference in New Issue
Block a user