diff options
author | bunnei <bunneidev@gmail.com> | 2015-08-12 06:19:20 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-08-16 00:03:26 +0200 |
commit | a1942238f5046811833e9636c64f991905960732 (patch) | |
tree | 47de97e98aa464cee8e9297f419ac99c289a2293 /src/common/CMakeLists.txt | |
parent | x64: Refactor to remove fake interfaces and general cleanups. (diff) | |
download | yuzu-a1942238f5046811833e9636c64f991905960732.tar yuzu-a1942238f5046811833e9636c64f991905960732.tar.gz yuzu-a1942238f5046811833e9636c64f991905960732.tar.bz2 yuzu-a1942238f5046811833e9636c64f991905960732.tar.lz yuzu-a1942238f5046811833e9636c64f991905960732.tar.xz yuzu-a1942238f5046811833e9636c64f991905960732.tar.zst yuzu-a1942238f5046811833e9636c64f991905960732.zip |
Diffstat (limited to 'src/common/CMakeLists.txt')
-rw-r--r-- | src/common/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index fe82f71e8..53c915606 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -3,7 +3,6 @@ configure_file("${CMAKE_CURRENT_SOURCE_DIR}/scm_rev.cpp.in" "${CMAKE_CURRENT_SOU set(SRCS break_points.cpp - cpu_detect.cpp emu_window.cpp file_util.cpp hash.cpp @@ -31,7 +30,6 @@ set(HEADERS common_funcs.h common_paths.h common_types.h - cpu_detect.h debug_interface.h emu_window.h file_util.h @@ -63,10 +61,12 @@ set(HEADERS if(ARCHITECTURE_X64) set(SRCS ${SRCS} x64/abi.cpp + x64/cpu_detect.cpp x64/emitter.cpp) set(HEADERS ${HEADERS} x64/abi.h + x64/cpu_detect.h x64/emitter.h) endif() |