summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/client.pro4
-rw-r--r--client/main.cpp2
2 files changed, 4 insertions, 2 deletions
diff --git a/client/client.pro b/client/client.pro
index ef28c1a..050e6b1 100644
--- a/client/client.pro
+++ b/client/client.pro
@@ -8,5 +8,5 @@ DEPENDPATH += .
INCLUDEPATH += .
# Input
-HEADERS += dialog.h
-SOURCES += dialog.cpp main.cpp
+HEADERS += client.h proxy.h dialog.h
+SOURCES += dialog.cpp main.cpp proxy.cpp
diff --git a/client/main.cpp b/client/main.cpp
index ab4d526..0c36979 100644
--- a/client/main.cpp
+++ b/client/main.cpp
@@ -1,5 +1,7 @@
#include <QApplication>
+#include "client.h"
+#include "proxy.h"
#include "dialog.h"
int main(int argc, char *argv[])