1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 23:52:26 +00:00

Add keyboard.cpp/h to the Qt project.

This commit is contained in:
Thomas Harte 2021-05-05 19:06:25 -04:00
parent 4858cfce6b
commit 22b29e77a7

View File

@ -134,10 +134,11 @@ SOURCES += \
$$SRC/Storage/Tape/Formats/*.cpp \ $$SRC/Storage/Tape/Formats/*.cpp \
$$SRC/Storage/Tape/Parsers/*.cpp \ $$SRC/Storage/Tape/Parsers/*.cpp \
\ \
main.cpp \ main.cpp \
mainwindow.cpp \ mainwindow.cpp \
scantargetwidget.cpp \ scantargetwidget.cpp \
timer.cpp timer.cpp \
keyboard.cpp
HEADERS += \ HEADERS += \
$$SRC/Activity/*.hpp \ $$SRC/Activity/*.hpp \
@ -275,12 +276,13 @@ HEADERS += \
$$SRC/Storage/Tape/Formats/*.hpp \ $$SRC/Storage/Tape/Formats/*.hpp \
$$SRC/Storage/Tape/Parsers/*.hpp \ $$SRC/Storage/Tape/Parsers/*.hpp \
\ \
audiobuffer.h \ audiobuffer.h \
functionthread.h \ functionthread.h \
mainwindow.h \ mainwindow.h \
scantargetwidget.h \ scantargetwidget.h \
settings.h \ settings.h \
timer.h keyboard.h \
timer.h
FORMS += \ FORMS += \
mainwindow.ui mainwindow.ui