Guest User

Untitled

a guest
Aug 15th, 2017
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.47 KB | None | 0 0
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2017-08-16T00:02:16
  4. #
  5. #-------------------------------------------------
  6.  
  7. QT       += core gui
  8.  
  9.  
  10. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  11.  
  12. TARGET = XMLGenerator
  13. TEMPLATE = app
  14.  
  15. # The following define makes your compiler emit warnings if you use
  16. # any feature of Qt which as been marked as deprecated (the exact warnings
  17. # depend on your compiler). Please consult the documentation of the
  18. # deprecated API in order to know how to port your code away from it.
  19. DEFINES += QT_DEPRECATED_WARNINGS
  20.  
  21. # You can also make your code fail to compile if you use deprecated APIs.
  22. # In order to do so, uncomment the following line.
  23. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  24. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0
  25.  
  26.  
  27. SOURCES += \
  28.         main.cpp \
  29.         mainwindow.cpp
  30.  
  31. HEADERS += \
  32.         mainwindow.h
  33.  
  34. FORMS += \
  35.         mainwindow.ui
  36.  
  37. QT_CONFIG -= no-pkg-config
  38. CONFIG  += link_pkgconfig
  39. PKGCONFIG += opencv
  40.  
  41. macx: LIBS += -L$$PWD/../../../../Desktop/ImageToCartoon/dlib-19.4/examples/build/dlib_build/Release/ -ldlib
  42.  
  43. INCLUDEPATH += $$PWD/../../../../Desktop/ImageToCartoon/dlib-19.4/
  44. DEPENDPATH += $$PWD/../../../../Desktop/ImageToCartoon/dlib-19.4/
  45.  
  46. macx: PRE_TARGETDEPS += $$PWD/../../../../Desktop/ImageToCartoon/dlib-19.4/examples/build/dlib_build/Release/libdlib.a
Add Comment
Please, Sign In to add comment