123456789101112131415161718192021222324252627282930313233343536373839 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2013-09-21T18:37:07
- #
- #-------------------------------------------------
-
- QT += core gui
-
- greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
-
- TARGET = usermgr
- TEMPLATE = app
-
-
- SOURCES += main.cpp\
- widget.cpp
-
- HEADERS += widget.h \
- version.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
|