diff options
author | Alex Borisov <borisov.alexandr@rambler.ru> | 2011-12-12 03:57:23 +0200 |
---|---|---|
committer | Alex Borisov <borisov.alexandr@rambler.ru> | 2011-12-12 03:57:23 +0200 |
commit | f77a7f9a1e282dba6e39f6b7f0685971cfac7747 (patch) | |
tree | 4053e95d95c3a34f6b0cdaa11c61b50de9bbf05f /client/client.pro | |
parent | 1ecb59ec27137a039a73289a3ded1f8dedcdab88 (diff) |
Proxifier config parsing
Diffstat (limited to 'client/client.pro')
-rw-r--r-- | client/client.pro | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/client/client.pro b/client/client.pro index ca6abf8..cfdc184 100644 --- a/client/client.pro +++ b/client/client.pro @@ -5,7 +5,7 @@ QMAKE_CXXFLAGS_DEBUG += -DDEBUG -g3 -ggdb -O0
CONFIG += qt debug console warn_on
-QT = core gui network
+QT = core gui network xml
TEMPLATE = app
TARGET = client
@@ -23,7 +23,8 @@ HEADERS += client.h \ SslClient.h \
FileOpThread.h \
DownloadClient.h \
- Utility.h
+ Utility.h \
+ Proxifier.h
SOURCES += Dialog.cpp \
main.cpp \
@@ -35,7 +36,8 @@ SOURCES += Dialog.cpp \ SslClient.cpp \
FileOpThread.cpp \
DownloadClient.cpp \
- Utility.cpp
+ Utility.cpp \
+ Proxifier.cpp
OTHER_FILES +=
|