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.

ns_finder.pro 820B

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