citra/src/core/CMakeLists.txt

50 lines
1.7 KiB
CMake
Raw Normal View History

2014-04-10 05:09:05 +02:00
set(SRCS core.cpp
core_timing.cpp
loader.cpp
mem_map.cpp
mem_map_funcs.cpp
system.cpp
arm/disassembler/arm_disasm.cpp
arm/disassembler/load_symbol_map.cpp
2014-04-10 05:09:05 +02:00
arm/interpreter/arm_interpreter.cpp
2014-05-16 06:23:36 +02:00
arm/interpreter/armcopro.cpp
2014-04-10 05:09:05 +02:00
arm/interpreter/armemu.cpp
arm/interpreter/arminit.cpp
arm/interpreter/armmmu.cpp
arm/interpreter/armos.cpp
arm/interpreter/armsupp.cpp
arm/interpreter/armvirt.cpp
arm/interpreter/thumbemu.cpp
arm/interpreter/vfp/vfp.cpp
arm/interpreter/vfp/vfpdouble.cpp
2014-05-17 02:57:31 +02:00
arm/interpreter/vfp/vfpinstr.cpp
arm/interpreter/vfp/vfpsingle.cpp
arm/interpreter/mmu/arm1176jzf_s_mmu.cpp
2014-05-16 05:39:06 +02:00
arm/interpreter/mmu/cache.cpp
arm/interpreter/mmu/maverick.cpp
2014-05-16 05:39:06 +02:00
arm/interpreter/mmu/rb.cpp
arm/interpreter/mmu/sa_mmu.cpp
2014-05-16 05:39:06 +02:00
arm/interpreter/mmu/tlb.cpp
arm/interpreter/mmu/wb.cpp
arm/interpreter/mmu/xscale_copro.cpp
2014-04-10 05:09:05 +02:00
elf/elf_reader.cpp
2014-04-10 05:28:43 +02:00
file_sys/directory_file_system.cpp
2014-04-10 05:09:05 +02:00
file_sys/meta_file_system.cpp
2014-04-23 00:35:40 +02:00
hle/hle.cpp
hle/config_mem.cpp
hle/coprocessor.cpp
hle/svc.cpp
2014-05-10 04:11:18 +02:00
hle/kernel/kernel.cpp
2014-05-21 05:03:45 +02:00
hle/kernel/mutex.cpp
2014-05-10 04:11:18 +02:00
hle/kernel/thread.cpp
2014-04-23 00:35:40 +02:00
hle/service/apt.cpp
hle/service/gsp.cpp
hle/service/hid.cpp
hle/service/service.cpp
hle/service/srv.cpp
2014-04-10 05:09:05 +02:00
hw/hw.cpp
2014-04-23 00:35:40 +02:00
hw/lcd.cpp
hw/ndma.cpp)
2013-08-30 05:35:09 +02:00
add_library(core STATIC ${SRCS})