1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-29 00:29:34 +00:00

Adds 'InstructionSets' to the SDL and Qt projects.

This commit is contained in:
Thomas Harte 2021-01-15 22:30:02 -05:00
parent 1acb8c3c42
commit 321e10fffb
2 changed files with 12 additions and 0 deletions

View File

@ -66,6 +66,10 @@ SOURCES += \
$$SRC/Concurrency/*.cpp \
\
$$SRC/Inputs/*.cpp \
\
$$SRC/InstructionSets/M50740/*.cpp \
$$SRC/InstructionSets/PowerPC/*.cpp \
$$SRC/InstructionSets/x86/*.cpp \
\
$$SRC/Machines/*.cpp \
$$SRC/Machines/AmstradCPC/*.cpp \
@ -186,6 +190,10 @@ HEADERS += \
\
$$SRC/Inputs/*.hpp \
$$SRC/Inputs/QuadratureMouse/*.hpp \
\
$$SRC/InstructionSets/M50740/*.hpp \
$$SRC/InstructionSets/PowerPC/*.hpp \
$$SRC/InstructionSets/x86/*.hpp \
\
$$SRC/Machines/*.hpp \
$$SRC/Machines/AmstradCPC/*.hpp \

View File

@ -61,6 +61,10 @@ SOURCES += glob.glob('../../Configurable/*.cpp')
SOURCES += glob.glob('../../Inputs/*.cpp')
SOURCES += glob.glob('../../InstructionSets/M50740/*.cpp')
SOURCES += glob.glob('../../InstructionSets/PowerPC/*.cpp')
SOURCES += glob.glob('../../InstructionSets/x86/*.cpp')
SOURCES += glob.glob('../../Machines/*.cpp')
SOURCES += glob.glob('../../Machines/AmstradCPC/*.cpp')
SOURCES += glob.glob('../../Machines/Apple/AppleII/*.cpp')