You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Lichtklavier.pro 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. QT += core gui
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  3. CONFIG += c++11
  4. # You can make your code fail to compile if it uses deprecated APIs.
  5. # In order to do so, uncomment the following line.
  6. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  7. DEFINES += __LINUX_ALSA__ #ADDED BY L.Mewes 28.09.2021
  8. LIBS += -lasound #
  9. LIBS += -lpthread #
  10. #
  11. SOURCES += \
  12. CircleElement.cpp \
  13. CircleOfFifths.cpp \
  14. ColorScale.cpp \
  15. MainWindow.cpp \
  16. MidiListener.cpp \
  17. PianoKey.cpp \
  18. PianoKeyBoard.cpp \
  19. RtMidi.cpp \
  20. Tone.cpp \
  21. main.cpp
  22. HEADERS += \
  23. CircleElement.h \
  24. CircleOfFifths.h \
  25. ColorScale.h \
  26. MainWindow.h \
  27. MidiListener.h \
  28. PianoKey.h \
  29. PianoKeyBoard.h \
  30. RtMidi.h \
  31. Tone.h
  32. # Default rules for deployment.
  33. qnx: target.path = /tmp/$${TARGET}/bin
  34. else: unix:!android: target.path = /opt/$${TARGET}/bin
  35. !isEmpty(target.path): INSTALLS += target