From 321e10fffb0d25e84c91a51166da33cbb398eeb6 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 15 Jan 2021 22:30:02 -0500 Subject: [PATCH] Adds 'InstructionSets' to the SDL and Qt projects. --- OSBindings/Qt/ClockSignal.pro | 8 ++++++++ OSBindings/SDL/SConstruct | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/OSBindings/Qt/ClockSignal.pro b/OSBindings/Qt/ClockSignal.pro index a566d6db1..656bf2f23 100644 --- a/OSBindings/Qt/ClockSignal.pro +++ b/OSBindings/Qt/ClockSignal.pro @@ -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 \ diff --git a/OSBindings/SDL/SConstruct b/OSBindings/SDL/SConstruct index 76c59e8e9..956605b33 100644 --- a/OSBindings/SDL/SConstruct +++ b/OSBindings/SDL/SConstruct @@ -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')