citra/src/core/CMakeLists.txt

96 lines
3.2 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
set(HEADERS core.h
2014-05-01 01:56:25 +02:00
core_timing.h
loader.h
mem_map.h
system.h
arm/disassembler/arm_disasm.h
2014-05-17 08:39:27 +02:00
arm/disassembler/load_symbol_map.h
2014-05-01 01:56:25 +02:00
arm/interpreter/arm_interpreter.h
arm/interpreter/arm_regformat.h
arm/interpreter/armcpu.h
arm/interpreter/armdefs.h
arm/interpreter/armemu.h
arm/interpreter/armmmu.h
arm/interpreter/armos.h
arm/interpreter/skyeye_defs.h
2014-05-17 08:39:27 +02:00
arm/interpreter/mmu/arm1176jzf_s_mmu.h
arm/interpreter/mmu/cache.h
arm/interpreter/mmu/rb.h
arm/interpreter/mmu/sa_mmu.h
arm/interpreter/mmu/tlb.h
arm/interpreter/mmu/wb.h
arm/interpreter/vfp/asm_vfp.h
arm/interpreter/vfp/vfp.h
arm/interpreter/vfp/vfp_helper.h
2014-05-01 01:56:25 +02:00
elf/elf_reader.h
elf/elf_types.h
2014-05-01 05:12:01 +02:00
file_sys/directory_file_system.h
2014-05-01 01:56:25 +02:00
file_sys/file_sys.h
file_sys/meta_file_system.h
2014-05-17 08:39:27 +02:00
hle/config_mem.h
hle/coprocessor.h
2014-05-01 05:12:01 +02:00
hle/hle.h
2014-05-23 05:39:25 +02:00
hle/svc.h
hle/kernel/kernel.h
hle/kernel/mutex.h
hle/kernel/thread.h
2014-05-01 01:56:25 +02:00
hle/function_wrappers.h
hle/service/apt.h
hle/service/gsp.h
hle/service/hid.h
hle/service/service.h
hle/service/srv.h
hw/hw.h
hw/lcd.h
hw/ndma.h)
add_library(core STATIC ${SRCS} ${HEADERS})