Added prefixes and renamed lowercase

This commit is contained in:
Roland Winklmeier
2013-03-19 21:45:47 +01:00
parent 8036888d88
commit ca20cf5569
11 changed files with 14 additions and 10 deletions

View File

@@ -0,0 +1,34 @@
QT += core network
QT -= gui
TARGET = com_server
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
DEPENDPATH += . ../../src
INCLUDEPATH += . ../../src
SOURCES += main.cpp \
server.cpp
HEADERS += server.h
win32-msvc* {
PRE_TARGETDEPS += ../../lib/blackmisc.lib \
LIBS += ../../lib/blackmisc.lib \
}
!win32-msvc* {
PRE_TARGETDEPS += ../../lib/libblackmisc.a \
LIBS += ../../lib/libblackmisc.a \
}
DESTDIR = ../../bin