fix build with JIT disabled and set default JIT maxblock size to 32

This commit is contained in:
RSDuck
2020-04-26 16:27:26 +02:00
parent 59c8d39765
commit 47b44a6be8
4 changed files with 9 additions and 3 deletions

View File

@ -10,7 +10,6 @@ add_library(core STATIC
ARMInterpreter_ALU.cpp
ARMInterpreter_Branch.cpp
ARMInterpreter_LoadStore.cpp
ARM_InstrInfo.cpp
Config.cpp
CP15.cpp
CRC32.cpp
@ -39,6 +38,7 @@ if (ENABLE_JIT)
target_sources(core PRIVATE
ARMJIT.cpp
ARM_InstrInfo.cpp
dolphin/CommonFuncs.cpp
)