You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

usermgr.pro 824B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2013-09-21T18:37:07
  4. #
  5. #-------------------------------------------------
  6. QT += core gui
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8. TARGET = usermgr
  9. TEMPLATE = app
  10. SOURCES += main.cpp\
  11. widget.cpp
  12. HEADERS += widget.h \
  13. version.h
  14. FORMS += widget.ui
  15. RC_FILE = rc.rc
  16. win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../Epimafia/release/ -lEpimafia
  17. else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../Epimafia/debug/ -lEpimafia
  18. else:unix: LIBS += -L$$OUT_PWD/../Epimafia/ -lEpimafia
  19. unix:!symbian {
  20. maemo5 {
  21. target.path = /opt/usr/bin
  22. } else {
  23. target.path = /usr/bin
  24. }
  25. INSTALLS += target
  26. }
  27. INCLUDEPATH += $$PWD/../Epimafia
  28. DEPENDPATH += $$PWD/../Epimafia