Legacy_v2.pro 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2018-07-12T19:45:49
  4. #
  5. #-------------------------------------------------
  6. QT += core gui network
  7. QMAKE_LFLAGS_RELEASE += -static -static-libgcc -static-libstdc++
  8. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  9. TARGET = Legacy_v2
  10. TEMPLATE = app
  11. # The following define makes your compiler emit warnings if you use
  12. # any feature of Qt which has been marked as deprecated (the exact warnings
  13. # depend on your compiler). Please consult the documentation of the
  14. # deprecated API in order to know how to port your code away from it.
  15. DEFINES += QT_DEPRECATED_WARNINGS
  16. # You can also make your code fail to compile if you use deprecated APIs.
  17. # In order to do so, uncomment the following line.
  18. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  19. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  20. SOURCES += \
  21. src/main.cpp \
  22. gui/mainwindow.cpp \
  23. src/menuentry.cpp \
  24. src/legacyapp.cpp \
  25. src/filesystem.cpp \
  26. src/filedownloader.cpp \
  27. gui/statuswidget.cpp \
  28. gui/rusificationwidget.cpp
  29. HEADERS += \
  30. gui/mainwindow.h \
  31. include/menuentry.h \
  32. include/legacyapp.h \
  33. include/filesystem.h \
  34. include/filedownloader.h \
  35. gui/statuswidget.h \
  36. gui/rusificationwidget.h
  37. FORMS += \
  38. gui/mainwindow.ui \
  39. gui/statuswidget.ui \
  40. gui/rusificationwidget.ui
  41. RESOURCES += \
  42. res.qrc
  43. win32:RC_ICONS = $$PWD/assets/appicon.ico
  44. unix:!macx|win32: LIBS += -L$$PWD/lib/lib/ -lLotroDat_static
  45. INCLUDEPATH += $$PWD/lib/include
  46. INCLUDEPATH += $$PWD/include
  47. INCLUDEPATH += $$PWD/gui
  48. DEPENDPATH += $$PWD/lib/include
  49. win32:!win32-g++: PRE_TARGETDEPS += $$PWD/lib/lib/LotroDat_static.lib
  50. else:unix:!macx|win32-g++: PRE_TARGETDEPS += $$PWD/lib/lib/libLotroDat_static.a
  51. unix:!macx|win32: LIBS += -L$$PWD/lib/Third_party/lib/ -lyaml-cpp
  52. INCLUDEPATH += $$PWD/lib/Third_party
  53. DEPENDPATH += $$PWD/lib/Third_party
  54. win32:!win32-g++: PRE_TARGETDEPS += $$PWD/lib/Third_party/lib/yaml-cpp.lib
  55. else:unix:!macx|win32-g++: PRE_TARGETDEPS += $$PWD/lib/Third_party/lib/libyaml-cpp.a
  56. unix:!macx|win32: LIBS += -L$$PWD/lib/Third_party/lib/ -lzlibstatic
  57. INCLUDEPATH += $$PWD/lib/Third_party
  58. DEPENDPATH += $$PWD/lib/Third_party
  59. win32:!win32-g++: PRE_TARGETDEPS += $$PWD/lib/Third_party/lib/zlibstatic.lib
  60. else:unix:!macx|win32-g++: PRE_TARGETDEPS += $$PWD/lib/Third_party/lib/libzlibstatic.a