Advertisement
Proton23

pro-file

Jun 28th, 2016
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 1.03 KB | None | 0 0
  1. QT       += core gui
  2.  
  3. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  4.  
  5. TARGET = Worker4Music
  6. TEMPLATE = app
  7.  
  8.  
  9. SOURCES += main.cpp\
  10.         mainwindow.cpp \
  11.     mainworker.cpp \
  12.     musicbrain.cpp
  13.  
  14. HEADERS  += mainwindow.h \
  15.     mainworker.h \
  16.     musicbrain.h
  17.  
  18. FORMS    += mainwindow.ui
  19.  
  20.  
  21. win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../../../../usr/local/lib/release/ -ltag
  22. else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../../../../usr/local/lib/debug/ -ltag
  23. else:unix: LIBS += -L$$PWD/../../../../usr/local/lib/ -ltag
  24.  
  25. INCLUDEPATH += $$PWD/../../../../usr/local/include
  26. DEPENDPATH += $$PWD/../../../../usr/local/include
  27.  
  28. win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../../../../usr/local/lib/release/ -lmusicbrainz5
  29. else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../../../../usr/local/lib/debug/ -lmusicbrainz5
  30. else:unix: LIBS += -L$$PWD/../../../../usr/local/lib/ -lmusicbrainz5
  31.  
  32. INCLUDEPATH += $$PWD/../../../../usr/local/include
  33. DEPENDPATH += $$PWD/../../../../usr/local/include
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement