41 lines
726 B
Prolog
41 lines
726 B
Prolog
|
|
#-------------------------------------------------
|
||
|
|
#
|
||
|
|
# Project created by QtCreator 2013-12-01T10:03:18
|
||
|
|
#
|
||
|
|
#-------------------------------------------------
|
||
|
|
|
||
|
|
QT += core gui network
|
||
|
|
|
||
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||
|
|
|
||
|
|
TARGET = LanPaper
|
||
|
|
TEMPLATE = app
|
||
|
|
LIBS+=-static
|
||
|
|
#LIBS+=C:/Qt5Lib/plugins/imageformats/libqico.a
|
||
|
|
|
||
|
|
SOURCES += main.cpp\
|
||
|
|
LanPaper.cpp \
|
||
|
|
Server.cpp \
|
||
|
|
ThreadedServerConnection.cpp \
|
||
|
|
Client.cpp \
|
||
|
|
TrayIco.cpp \
|
||
|
|
Secret.cpp \
|
||
|
|
Config.cpp
|
||
|
|
|
||
|
|
HEADERS += LanPaper.h \
|
||
|
|
Server.h \
|
||
|
|
ThreadedServerConnection.h \
|
||
|
|
Client.h \
|
||
|
|
TrayIco.h \
|
||
|
|
Secret.h \
|
||
|
|
Config.h
|
||
|
|
|
||
|
|
FORMS += LanPaper.ui
|
||
|
|
|
||
|
|
RESOURCES += \
|
||
|
|
resource.qrc
|
||
|
|
|
||
|
|
#QTPLUGIN+=qico
|
||
|
|
|
||
|
|
#CONFIG += staticlib
|