From ddbeebb887cff61b087a48738650832bc62c9e83 Mon Sep 17 00:00:00 2001 From: bunnei Date: Tue, 21 Jul 2015 20:08:49 -0400 Subject: Common: Ported over boilerplate x86 JIT code from Dolphin/PPSSPP. --- src/common/CMakeLists.txt | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'src/common/CMakeLists.txt') diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index cef5081c5..600193858 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -2,6 +2,7 @@ configure_file("${CMAKE_CURRENT_SOURCE_DIR}/scm_rev.cpp.in" "${CMAKE_CURRENT_SOURCE_DIR}/scm_rev.cpp" @ONLY) set(SRCS + abi.cpp break_points.cpp emu_window.cpp file_util.cpp @@ -20,10 +21,12 @@ set(SRCS ) set(HEADERS + abi.h assert.h bit_field.h break_points.h chunk_file.h + code_block.h color.h common_funcs.h common_paths.h @@ -58,10 +61,17 @@ set(HEADERS if(_M_X86) set(SRCS ${SRCS} - cpu_detect_x86.cpp) + cpu_detect_x86.cpp + x64_emitter.cpp) + + set(HEADERS ${HEADERS} + x64_emitter.h) else() set(SRCS ${SRCS} - cpu_detect_generic.cpp) + cpu_detect_generic.cpp) + + set(HEADERS ${HEADERS} + fake_emitter.h) endif() create_directory_groups(${SRCS} ${HEADERS}) -- cgit v1.2.3