diff options
Diffstat (limited to '')
-rw-r--r-- | server/bounce_qt.pro | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/server/bounce_qt.pro b/server/bounce_qt.pro new file mode 100644 index 0000000..2152506 --- /dev/null +++ b/server/bounce_qt.pro @@ -0,0 +1,38 @@ +#------------------------------------------------- +# +# Project created by QtCreator 2013-12-12T06:13:00 +# +#------------------------------------------------- + +QT += core network + +QT -= gui + +TARGET = bounce_qt +CONFIG += console +CONFIG -= app_bundle + +TEMPLATE = app + + +SOURCES += main.cpp \ + ircnetwork.cpp \ + ircnetworkconfig.cpp \ + bouncer.cpp \ + packetreader.cpp \ + packetwriter.cpp \ + socket.cpp \ + server.cpp \ + client.cpp \ + testthing.cpp + +HEADERS += \ + ircnetwork.h \ + ircnetworkconfig.h \ + bouncer.h \ + packetreader.h \ + packetwriter.h \ + socket.h \ + server.h \ + client.h \ + testthing.h |