Advertisement
starchyfort

work

May 19th, 2018
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.60 KB | None | 0 0
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2018-05-18T16:59:59
  4. #
  5. #-------------------------------------------------
  6.  
  7. QT       += core gui
  8.  
  9. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  10.  
  11. TARGET = MyProject
  12. TEMPLATE = app
  13.  
  14. CONFIG += console
  15.  
  16. #CONFIG -= app_bundle
  17.  
  18. #consider:
  19. #CONFIG += c++14 (11)
  20.  
  21. # The following define makes your compiler emit warnings if you use
  22. # any feature of Qt which has been marked as deprecated (the exact warnings
  23. # depend on your compiler). Please consult the documentation of the
  24. # deprecated API in order to know how to port your code away from it.
  25. DEFINES += QT_DEPRECATED_WARNINGS
  26.  
  27. # You can also make your code fail to compile if you use deprecated APIs.
  28. # In order to do so, uncomment the following line.
  29. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  30. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0
  31.  
  32.  
  33. SOURCES += \
  34.         main.cpp \
  35.         MyGUI.cpp \
  36.  
  37. HEADERS += \
  38.         MyGUI.h \
  39.     curl/curl.h \
  40.     curl/curlver.h \
  41.     curl/easy.h \
  42.     curl/mprintf.h \
  43.     curl/multi.h \
  44.     curl/stdcheaders.h \
  45.     curl/system.h \
  46.     curl/typecheck-gcc.h \
  47.     nlohmann/adl_serializer.hpp \
  48.     nlohmann/json.hpp \
  49.     nlohmann/json_fwd.hpp \
  50.     nlohmann/detail/exceptions.hpp \
  51.     nlohmann/detail/json_pointer.hpp \
  52.     nlohmann/detail/json_ref.hpp \
  53.     nlohmann/detail/macro_scope.hpp \
  54.     nlohmann/detail/macro_unscope.hpp \
  55.     nlohmann/detail/meta.hpp \
  56.     nlohmann/detail/value_t.hpp \
  57.     nlohmann/detail/output/binary_writer.hpp \
  58.     nlohmann/detail/output/output_adapters.hpp \
  59.     nlohmann/detail/output/serializer.hpp \
  60.     nlohmann/detail/iterators/internal_iterator.hpp \
  61.     nlohmann/detail/iterators/iter_impl.hpp \
  62.     nlohmann/detail/iterators/iteration_proxy.hpp \
  63.     nlohmann/detail/iterators/json_reverse_iterator.hpp \
  64.     nlohmann/detail/iterators/primitive_iterator.hpp \
  65.     nlohmann/detail/input/binary_reader.hpp \
  66.     nlohmann/detail/input/input_adapters.hpp \
  67.     nlohmann/detail/input/lexer.hpp \
  68.     nlohmann/detail/input/parser.hpp \
  69.     nlohmann/detail/conversions/from_json.hpp \
  70.     nlohmann/detail/conversions/to_chars.hpp \
  71.     nlohmann/detail/conversions/to_json.hpp \
  72.  
  73. FORMS += \
  74.         MyGUI.ui
  75.  
  76. #INCLUDEPATH += $$PWD/.
  77. #DEPENDPATH += $$PWD/.
  78.  
  79. DISTFILES += \
  80.     libcurl.lib
  81.  
  82. win32:CONFIG(release, debug|release): LIBS += -L$$PWD/./ -llibcurl
  83. else:win32:CONFIG(debug, debug|release): LIBS += -L$$PWD/./ -llibcurld
  84.  
  85. INCLUDEPATH += $$PWD/.
  86. DEPENDPATH += $$PWD/.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement