diff options
Diffstat (limited to 'client/restarter.pro')
-rw-r--r-- | client/restarter.pro | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/client/restarter.pro b/client/restarter.pro new file mode 100644 index 0000000..31052b5 --- /dev/null +++ b/client/restarter.pro @@ -0,0 +1,29 @@ +#------------------------------------------------- +# +# Project created by QtCreator 2011-12-15T07:02:21 +# +#------------------------------------------------- + +QT += core gui network + +TARGET = restarter +TEMPLATE = app + + +SOURCES += main.cpp\ + mainwindow.cpp + +HEADERS += mainwindow.h + +FORMS += mainwindow.ui + +#DEFINES += MINIMAL + +QMAKE_CXXFLAGS += -Os -fomit-frame-pointer -std=gnu++0x +QMAKE_CFLAGS += -Os -fomit-frame-pointer -std=gnu99 + +LIBS += -Wl,-O1 + +RESOURCES += \ + resources.qrc + |