1234567891011121314151617181920212223242526272829303132333435363738 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2013-09-17T13:48:13
- #
- #-------------------------------------------------
-
- QT += core gui network
-
- greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
-
- TARGET = loginfinder
- TEMPLATE = app
-
-
- SOURCES += main.cpp\
- widget.cpp
-
- HEADERS += widget.h
-
- FORMS += widget.ui
-
- RC_FILE = rc.rc
-
- win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../Epimafia/release/ -lEpimafia
- else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../Epimafia/debug/ -lEpimafia
- else:unix: LIBS += -L$$OUT_PWD/../Epimafia/ -lEpimafia
-
- unix:!symbian {
- maemo5 {
- target.path = /opt/usr/bin
- } else {
- target.path = /usr/bin
- }
- INSTALLS += target
- }
-
- INCLUDEPATH += $$PWD/../Epimafia
- DEPENDPATH += $$PWD/../Epimafia
|