1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-26 10:29:31 +00:00
CLK/OSBindings/Qt/ClockSignal.pro

262 lines
8.3 KiB
Prolog
Raw Normal View History

2020-07-04 03:16:49 +00:00
QT += core gui multimedia widgets
CONFIG += c++17
# Permit multiple source files in different directories to have the same file name.
CONFIG += object_parallel_to_source
2020-07-04 03:16:49 +00:00
# Link against ZLib.
INCLUDEPATH += $$[QT_INSTALL_PREFIX]/src/3rdparty/zlib
LIBS += -lz
2020-07-04 03:16:49 +00:00
# Add flags (i) to identify that this is a Qt build; and
# (ii) to disable asserts in release builds.
DEFINES += TARGET_QT
QMAKE_CXXFLAGS_RELEASE += -DNDEBUG
2020-07-04 03:16:49 +00:00
# Generate warnings for any use of APIs deprecated prior to Qt 6.0.0.
# Development was performed against Qt 5.14.
DEFINES += QT_DEPRECATED_WARNINGS
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000
SOURCES += \
../../Analyser/Dynamic/*.cpp \
../../Analyser/Dynamic/MultiMachine/*.cpp \
../../Analyser/Dynamic/MultiMachine/Implementation/*.cpp \
\
../../Analyser/Static/*.cpp \
../../Analyser/Static/Acorn/*.cpp \
../../Analyser/Static/AmstradCPC/*.cpp \
../../Analyser/Static/AppleII/*.cpp \
../../Analyser/Static/Atari2600/*.cpp \
../../Analyser/Static/AtariST/*.cpp \
../../Analyser/Static/Coleco/*.cpp \
../../Analyser/Static/Commodore/*.cpp \
../../Analyser/Static/Disassembler/*.cpp \
../../Analyser/Static/DiskII/*.cpp \
../../Analyser/Static/Macintosh/*.cpp \
../../Analyser/Static/MSX/*.cpp \
../../Analyser/Static/Oric/*.cpp \
../../Analyser/Static/Sega/*.cpp \
../../Analyser/Static/ZX8081/*.cpp \
\
../../Components/1770/*.cpp \
../../Components/5380/*.cpp \
../../Components/6522/Implementation/*.cpp \
../../Components/6560/*.cpp \
../../Components/6850/*.cpp \
../../Components/68901/*.cpp \
../../Components/8272/*.cpp \
../../Components/8530/*.cpp \
../../Components/9918/*.cpp \
../../Components/AudioToggle/*.cpp \
../../Components/AY38910/*.cpp \
../../Components/DiskII/*.cpp \
../../Components/KonamiSCC/*.cpp \
../../Components/OPx/*.cpp \
../../Components/SN76489/*.cpp \
../../Components/Serial/*.cpp \
\
../../Concurrency/*.cpp \
\
../../Inputs/*.cpp \
\
../../Machines/*.cpp \
../../Machines/AmstradCPC/*.cpp \
../../Machines/Apple/AppleII/*.cpp \
../../Machines/Apple/Macintosh/*.cpp \
../../Machines/Atari/2600/*.cpp \
../../Machines/Atari/ST/*.cpp \
../../Machines/ColecoVision/*.cpp \
../../Machines/Commodore/*.cpp \
../../Machines/Commodore/1540/Implementation/*.cpp \
../../Machines/Commodore/Vic-20/*.cpp \
../../Machines/Electron/*.cpp \
../../Machines/MasterSystem/*.cpp \
../../Machines/MSX/*.cpp \
../../Machines/Oric/*.cpp \
../../Machines/Utility/*.cpp \
../../Machines/ZX8081/*.cpp \
\
../../Outputs/*.cpp \
../../Outputs/CRT/*.cpp \
../../Outputs/OpenGL/*.cpp \
../../Outputs/OpenGL/Primitives/*.cpp \
\
../../Processors/6502/Implementation/*.cpp \
../../Processors/6502/State/*.cpp \
../../Processors/68000/Implementation/*.cpp \
../../Processors/68000/State/*.cpp \
../../Processors/Z80/Implementation/*.cpp \
../../Processors/Z80/State/*.cpp \
\
../../Reflection/*.cpp \
\
../../SignalProcessing/*.cpp \
\
../../Storage/*.cpp \
../../Storage/Cartridge/*.cpp \
../../Storage/Cartridge/Encodings/*.cpp \
../../Storage/Cartridge/Formats/*.cpp \
../../Storage/Data/*.cpp \
../../Storage/Disk/*.cpp \
../../Storage/Disk/Controller/*.cpp \
../../Storage/Disk/DiskImage/Formats/*.cpp \
../../Storage/Disk/DiskImage/Formats/Utility/*.cpp \
../../Storage/Disk/Encodings/*.cpp \
../../Storage/Disk/Encodings/AppleGCR/*.cpp \
../../Storage/Disk/Encodings/MFM/*.cpp \
../../Storage/Disk/Parsers/*.cpp \
../../Storage/Disk/Track/*.cpp \
../../Storage/MassStorage/*.cpp \
../../Storage/MassStorage/Encodings/*.cpp \
../../Storage/MassStorage/Formats/*.cpp \
../../Storage/MassStorage/SCSI/*.cpp \
../../Storage/Tape/*.cpp \
../../Storage/Tape/Formats/*.cpp \
../../Storage/Tape/Parsers/*.cpp \
\
main.cpp \
mainwindow.cpp \
scantargetwidget.cpp \
timer.cpp
HEADERS += \
../../Activity/*.hpp \
\
../../Analyser/*.hpp \
../../Analyser/Dynamic/*.hpp \
../../Analyser/Dynamic/MultiMachine/*.hpp \
../../Analyser/Dynamic/MultiMachine/Implementation/*.hpp \
\
../../Analyser/Static/*.hpp \
../../Analyser/Static/Acorn/*.hpp \
../../Analyser/Static/AmstradCPC/*.hpp \
../../Analyser/Static/AppleII/*.hpp \
../../Analyser/Static/Atari2600/*.hpp \
../../Analyser/Static/AtariST/*.hpp \
../../Analyser/Static/Coleco/*.hpp \
../../Analyser/Static/Commodore/*.hpp \
../../Analyser/Static/Disassembler/*.hpp \
../../Analyser/Static/DiskII/*.hpp \
../../Analyser/Static/Macintosh/*.hpp \
../../Analyser/Static/MSX/*.hpp \
../../Analyser/Static/Oric/*.hpp \
../../Analyser/Static/Sega/*.hpp \
../../Analyser/Static/ZX8081/*.hpp \
\
../../ClockReceiver/*.hpp \
\
../../Components/1770/*.hpp \
../../Components/5380/*.hpp \
../../Components/6522/*.hpp \
../../Components/6522/Implementation/*.hpp \
../../Components/6532/*.hpp \
../../Components/6560/*.hpp \
../../Components/6845/*.hpp \
../../Components/6850/*.hpp \
../../Components/8255/*.hpp \
../../Components/8272/*.hpp \
../../Components/8530/*.hpp \
../../Components/9918/*.hpp \
../../Components/9918/Implementation/*.hpp \
../../Components/68901/*.hpp \
../../Components/AudioToggle/*.hpp \
../../Components/AY38910/*.hpp \
../../Components/DiskII/*.hpp \
../../Components/KonamiSCC/*.hpp \
../../Components/OPx/*.hpp \
../../Components/OPx/Implementation/*.hpp \
../../Components/Serial/*.hpp \
../../Components/SN76489/*.hpp \
\
../../Concurrency/*.hpp \
\
../../Configurable/*.hpp \
\
../../Inputs/*.hpp \
../../Inputs/QuadratureMouse/*.hpp \
\
../../Machines/*.hpp \
../../Machines/AmstradCPC/*.hpp \
../../Machines/Apple/AppleII/*.hpp \
../../Machines/Apple/Macintosh/*.hpp \
../../Machines/Atari/2600/*.hpp \
../../Machines/Atari/ST/*.hpp \
../../Machines/ColecoVision/*.hpp \
../../Machines/Commodore/*.hpp \
../../Machines/Commodore/1540/Implementation/*.hpp \
../../Machines/Commodore/Vic-20/*.hpp \
../../Machines/Electron/*.hpp \
../../Machines/MasterSystem/*.hpp \
../../Machines/MSX/*.hpp \
../../Machines/Oric/*.hpp \
../../Machines/Utility/*.hpp \
../../Machines/ZX8081/*.hpp \
\
../../Numeric/*.hpp \
\
../../Outputs/*.hpp \
../../Outputs/CRT/*.hpp \
../../Outputs/CRT/Internals/*.hpp \
../../Outputs/OpenGL/*.hpp \
../../Outputs/OpenGL/Primitives/*.hpp \
../../Outputs/Speaker/*.hpp \
../../Outputs/Speaker/Implementation/*.hpp \
\
../../Processors/6502/*.hpp \
../../Processors/6502/Implementation/*.hpp \
../../Processors/6502/State/*.hpp \
../../Processors/68000/*.hpp \
../../Processors/68000/Implementation/*.hpp \
../../Processors/68000/State/*.hpp \
../../Processors/Z80/*.hpp \
../../Processors/Z80/Implementation/*.hpp \
../../Processors/Z80/State/*.hpp \
\
../../Reflection/*.hpp \
\
../../SignalProcessing/*.hpp \
\
../../Storage/*.hpp \
../../Storage/Cartridge/*.hpp \
../../Storage/Cartridge/Encodings/*.hpp \
../../Storage/Cartridge/Formats/*.hpp \
../../Storage/Data/*.hpp \
../../Storage/Disk/*.hpp \
../../Storage/Disk/Controller/*.hpp \
../../Storage/Disk/DiskImage/*.hpp \
../../Storage/Disk/DiskImage/Formats/*.hpp \
../../Storage/Disk/DiskImage/Formats/Utility/*.hpp \
../../Storage/Disk/DPLL/*.hpp \
../../Storage/Disk/Encodings/*.hpp \
../../Storage/Disk/Encodings/AppleGCR/*.hpp \
../../Storage/Disk/Encodings/MFM/*.hpp \
../../Storage/Disk/Parsers/*.hpp \
../../Storage/Disk/Track/*.hpp \
../../Storage/MassStorage/*.hpp \
../../Storage/MassStorage/Encodings/*.hpp \
../../Storage/MassStorage/Formats/*.hpp \
../../Storage/MassStorage/SCSI/*.hpp \
../../Storage/Tape/*.hpp \
../../Storage/Tape/Formats/*.hpp \
../../Storage/Tape/Parsers/*.hpp \
\
audiobuffer.h \
functionthread.h \
mainwindow.h \
scantargetwidget.h \
settings.h \
timer.h
FORMS += \
mainwindow.ui
TRANSLATIONS += \
ClockSignal_en_GB.ts
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target