Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.97 KB | None | 0 0
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2017-04-12T20:10:01
  4. #
  5. #-------------------------------------------------
  6.  
  7. QT += core gui network
  8.  
  9. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  10.  
  11. TARGET = ihm2
  12. TEMPLATE = app
  13.  
  14. # The following define makes your compiler emit warnings if you use
  15. # any feature of Qt which as been marked as deprecated (the exact warnings
  16. # depend on your compiler). Please consult the documentation of the
  17. # deprecated API in order to know how to port your code away from it.
  18. DEFINES += QT_DEPRECATED_WARNINGS
  19.  
  20. # You can also make your code fail to compile if you use deprecated APIs.
  21. # In order to do so, uncomment the following line.
  22. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  23. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  24.  
  25.  
  26. SOURCES += main.cpp\
  27. mainwindow.cpp \
  28. playbutton.cpp \
  29. audioprogressbar.cpp \
  30. volumecontroller.cpp \
  31. client.cpp
  32.  
  33. HEADERS += mainwindow.h \
  34. playbutton.h \
  35. audioprogressbar.h \
  36. volumecontroller.h \
  37. client.h \
  38. ../constantes.h
  39.  
  40. FORMS += mainwindow.ui
  41.  
  42. RESOURCES += \
  43. images.qrc
  44.  
  45. CONFIG += c++11
  46.  
  47. #LIBS += -lz
  48.  
  49. #win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../lib -ltag
  50. #else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../lib -ltag
  51. #else:unix: LIBS += -L$$PWD/../lib/ -ltag
  52.  
  53. INCLUDEPATH += $$PWD/../include/
  54. DEPENDPATH += $$PWD/../include/
  55.  
  56. #win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../lib/release/libtag.a
  57. #else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/../lib/debug/libtag.a
  58. #else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../lib/release/tag.lib
  59. #else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/../lib/debug/tag.lib
  60. #else:unix: PRE_TARGETDEPS += $$PWD/../lib/libtag.a
  61.  
  62.  
  63.  
  64. #win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../taglib-1.11.1/taglib/ -ltag
  65. #else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../taglib-1.11.1/taglib/ -ltagd
  66. #else:unix: LIBS += -L$$PWD/../taglib-1.11.1/taglib/ -ltag
  67.  
  68. #INCLUDEPATH += $$PWD/../taglib-1.11.1/taglib
  69. #DEPENDPATH += $$PWD/../taglib-1.11.1/taglib
  70.  
  71. win32:CONFIG(release, debug|release): LIBS += -L$$PWD/../taglib-1.11.1/taglib/ -ltag
  72. else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/../taglib-1.11.1/taglib/ -ltagd
  73.  
  74. #INCLUDEPATH += $$PWD/../taglib-1.11.1/taglib
  75. #DEPENDPATH += $$PWD/../taglib-1.11.1/taglib
  76.  
  77. win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../taglib-1.11.1/taglib/libtag.a
  78. else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/../taglib-1.11.1/taglib/libtagd.a
  79. else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/../taglib-1.11.1/taglib/tag.lib
  80. else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/../taglib-1.11.1/taglib/tagd.lib
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement