summaryrefslogtreecommitdiff
path: root/plugins/Listener/catchcopy-v0002/listener.pro
blob: b21289a0e9160d7b5f721644a1fe9be34badf35f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
CONFIG += c++11
QMAKE_CXXFLAGS+="-std=c++0x -Wall -Wextra"
mac:QMAKE_CXXFLAGS+="-stdlib=libc++"

TEMPLATE        = lib
CONFIG		+= plugin
QT		+= network
win32:LIBS += -ladvapi32
HEADERS         = \
    $$PWD/listener.h \
    $$PWD/catchcopy-api-0002/VariablesCatchcopy.h \
    $$PWD/catchcopy-api-0002/ServerCatchcopy.h \
    $$PWD/catchcopy-api-0002/ExtraSocketCatchcopy.h \
    $$PWD/Environment.h \
    $$PWD/Variable.h \
    $$PWD/DebugEngineMacro.h \
    $$PWD/StructEnumDefinition.h \
    $$PWD/../../../interface/PluginInterface_Listener.h \
    $$PWD/../../../cpp11addition.h
SOURCES         = \
    $$PWD/listener.cpp \
    $$PWD/catchcopy-api-0002/ServerCatchcopy.cpp \
    $$PWD/catchcopy-api-0002/ExtraSocketCatchcopy.cpp \
    $$PWD/../../../cpp11addition.cpp \
    $$PWD/../../../cpp11additionstringtointcpp.cpp
TARGET          = $$qtLibraryTarget(listener)