Advertisement
Guest User

Untitled

a guest
Sep 17th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2016-09-15T18:47:00
  4. #
  5. #-------------------------------------------------
  6.  
  7. QT += core gui
  8.  
  9. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  10.  
  11. TARGET = TEST
  12. TEMPLATE = app
  13.  
  14.  
  15. SOURCES += main.cpp\
  16. mainwindow.cpp \
  17. thomas.cpp
  18.  
  19. HEADERS += mainwindow.h \
  20. thomas.h
  21.  
  22. FORMS += mainwindow.ui
  23.  
  24. LIBS += tinyxml2
  25.  
  26.  
  27. win32:CONFIG(release, debug|release): LIBS += -L$$PWD/C:/Libs/ -ltinyxml2
  28. else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/C:/Libs/ -ltinyxml2d
  29. else:macx: LIBS += -L$$PWD/C:/Libs/ -ltinyxml2
  30.  
  31. INCLUDEPATH += $$PWD/C:/Libs
  32. DEPENDPATH += $$PWD/C:/Libs
  33.  
  34. win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/C:/Libs/libtinyxml2.a
  35. else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/C:/Libs/libtinyxml2d.a
  36. else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$PWD/C:/Libs/tinyxml2.lib
  37. else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$PWD/C:/Libs/tinyxml2d.lib
  38. else:macx: PRE_TARGETDEPS += $$PWD/C:/Libs/libtinyxml2.a
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement