#------------------------------------------------- # # Project created by QtCreator 2013-09-18T23:33:04 # #------------------------------------------------- QT += core gui network greaterThan(QT_MAJOR_VERSION, 4): QT += widgets TARGET = netsoul TEMPLATE = app SOURCES += main.cpp\ mainwindow.cpp \ connectwidget.cpp \ contactswidget.cpp \ dialogaddcontact.cpp \ usertreewidget.cpp \ dialogchat.cpp \ chatmanager.cpp \ dialogoptions.cpp \ options.cpp HEADERS += \ mainwindow.h \ connectwidget.h \ contactswidget.h \ dialogaddcontact.h \ usertreewidget.h \ dialogchat.h \ chatmanager.h \ dialogoptions.h \ options.h FORMS += \ mainwindow.ui \ connectwidget.ui \ contactswidget.ui \ dialogaddcontact.ui \ dialogchat.ui \ dialogoptions.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