diff options
| author | 2014-05-16 23:21:03 -0700 | |
|---|---|---|
| committer | 2014-05-16 23:21:03 -0700 | |
| commit | b8c8d0903ec9be4c7d580464480a0136277be803 (patch) | |
| tree | 9280a9f01e1312d0d8aed493282ae65d2384963c /src/core/CMakeLists.txt | |
| parent | Added FindGLEW to cmake-modules (diff) | |
| parent | Merge pull request #17 from bunnei/arm-vfp (diff) | |
| download | yuzu-b8c8d0903ec9be4c7d580464480a0136277be803.tar.gz yuzu-b8c8d0903ec9be4c7d580464480a0136277be803.tar.xz yuzu-b8c8d0903ec9be4c7d580464480a0136277be803.zip | |
Merge remote-tracking branch 'upstream/master' into issue-7-fix
Diffstat (limited to 'src/core/CMakeLists.txt')
| -rw-r--r-- | src/core/CMakeLists.txt | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index 11b90434d..f96f04b15 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt | |||
| @@ -5,7 +5,9 @@ set(SRCS core.cpp | |||
| 5 | mem_map_funcs.cpp | 5 | mem_map_funcs.cpp |
| 6 | system.cpp | 6 | system.cpp |
| 7 | arm/disassembler/arm_disasm.cpp | 7 | arm/disassembler/arm_disasm.cpp |
| 8 | arm/disassembler/load_symbol_map.cpp | ||
| 8 | arm/interpreter/arm_interpreter.cpp | 9 | arm/interpreter/arm_interpreter.cpp |
| 10 | arm/interpreter/armcopro.cpp | ||
| 9 | arm/interpreter/armemu.cpp | 11 | arm/interpreter/armemu.cpp |
| 10 | arm/interpreter/arminit.cpp | 12 | arm/interpreter/arminit.cpp |
| 11 | arm/interpreter/armmmu.cpp | 13 | arm/interpreter/armmmu.cpp |
| @@ -13,12 +15,24 @@ set(SRCS core.cpp | |||
| 13 | arm/interpreter/armsupp.cpp | 15 | arm/interpreter/armsupp.cpp |
| 14 | arm/interpreter/armvirt.cpp | 16 | arm/interpreter/armvirt.cpp |
| 15 | arm/interpreter/thumbemu.cpp | 17 | arm/interpreter/thumbemu.cpp |
| 16 | arm/mmu/arm1176jzf_s_mmu.cpp | 18 | arm/interpreter/vfp/vfp.cpp |
| 19 | arm/interpreter/vfp/vfpdouble.cpp | ||
| 20 | arm/interpreter/vfp/vfpinstr.cpp | ||
| 21 | arm/interpreter/vfp/vfpsingle.cpp | ||
| 22 | arm/interpreter/mmu/arm1176jzf_s_mmu.cpp | ||
| 23 | arm/interpreter/mmu/cache.cpp | ||
| 24 | arm/interpreter/mmu/maverick.cpp | ||
| 25 | arm/interpreter/mmu/rb.cpp | ||
| 26 | arm/interpreter/mmu/sa_mmu.cpp | ||
| 27 | arm/interpreter/mmu/tlb.cpp | ||
| 28 | arm/interpreter/mmu/wb.cpp | ||
| 29 | arm/interpreter/mmu/xscale_copro.cpp | ||
| 17 | elf/elf_reader.cpp | 30 | elf/elf_reader.cpp |
| 18 | file_sys/directory_file_system.cpp | 31 | file_sys/directory_file_system.cpp |
| 19 | file_sys/meta_file_system.cpp | 32 | file_sys/meta_file_system.cpp |
| 20 | hle/hle.cpp | 33 | hle/hle.cpp |
| 21 | hle/mrc.cpp | 34 | hle/config_mem.cpp |
| 35 | hle/coprocessor.cpp | ||
| 22 | hle/syscall.cpp | 36 | hle/syscall.cpp |
| 23 | hle/service/apt.cpp | 37 | hle/service/apt.cpp |
| 24 | hle/service/gsp.cpp | 38 | hle/service/gsp.cpp |