43 lines
987 B
Prolog
43 lines
987 B
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2012-08-22T11:32:24
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui
|
|
QT += webkit
|
|
|
|
CONFIG += no_keywords
|
|
|
|
TARGET = K-observer_client
|
|
TEMPLATE = app
|
|
|
|
|
|
SOURCES += main.cpp\
|
|
mainwindow.cpp \
|
|
../common/UserInfo.cpp \
|
|
../common/misc.cpp \
|
|
../common/MessageSender.cpp \
|
|
observerclientmodel.cpp \
|
|
../common/ClientSocket.cpp \
|
|
customtimer.cpp
|
|
|
|
HEADERS += mainwindow.h \
|
|
../common/UserInfo.h \
|
|
../common/misc.h \
|
|
../common/MessageSender.h \
|
|
observerclientmodel.h \
|
|
../common/ClientSocket.h \
|
|
CustomButton.h \
|
|
customtimer.h
|
|
|
|
INCLUDEPATH += C:/Workplace/libs/boost_1_47_0/
|
|
INCLUDEPATH += ../common/
|
|
|
|
LIBS += -LC:/Workplace/libs/boost_1_47_0/boost_windows/libs_engine/debug/
|
|
LIBS += -LC:/Workplace/libs/boost_1_47_0/boost_windows/libs_engine/release/
|
|
|
|
|
|
|
|
FORMS += mainwindow.ui
|