Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2017-03-27T10:36:42
  4. #
  5. #-------------------------------------------------
  6. QMAKE_CXXFLAGS += -std=c++11 -Wall -Wextra -pedantic -g
  7. QT += core gui
  8.  
  9. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  10.  
  11. TARGET = Solitaire
  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 +=\
  27. Main.cpp \
  28. Mainwindow.cpp \
  29. ../core/Card.cpp \
  30. ../core/Deck.cpp \
  31. ../core/Table.cpp \
  32. ../core/TextUi.cpp \
  33. ../core/ObjectLoading.cpp
  34.  
  35. HEADERS += \
  36. Defines.h \
  37. Mainwindow.h \
  38. ../core/Card.h \
  39. ../core/Deck.h \
  40. ../core/Shared.h \
  41. ../core/Table.h \
  42. ../core/TextUi.h \
  43. ../core/ObjectLoading.h
  44.  
  45. FORMS += \
  46. Mainwindow.ui
  47.  
  48. RESOURCES += \
  49. Images.qrc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement