yuzu/src/core/CMakeLists.txt

90 lines
3 KiB
CMake
Raw Normal View History

2014-04-10 04:09:05 +01: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 04:09:05 +01:00
arm/interpreter/arm_interpreter.cpp
2014-05-16 05:23:36 +01:00
arm/interpreter/armcopro.cpp
2014-04-10 04:09:05 +01: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 01:57:31 +01:00
arm/interpreter/vfp/vfpinstr.cpp
arm/interpreter/vfp/vfpsingle.cpp
arm/interpreter/mmu/arm1176jzf_s_mmu.cpp
2014-05-16 04:39:06 +01:00
arm/interpreter/mmu/cache.cpp
arm/interpreter/mmu/maverick.cpp
2014-05-16 04:39:06 +01:00
arm/interpreter/mmu/rb.cpp
arm/interpreter/mmu/sa_mmu.cpp
2014-05-16 04:39:06 +01:00
arm/interpreter/mmu/tlb.cpp
arm/interpreter/mmu/wb.cpp
arm/interpreter/mmu/xscale_copro.cpp
2014-04-10 04:09:05 +01:00
elf/elf_reader.cpp
2014-04-10 04:28:43 +01:00
file_sys/directory_file_system.cpp
2014-04-10 04:09:05 +01:00
file_sys/meta_file_system.cpp
2014-04-22 23:35:40 +01:00
hle/hle.cpp
hle/config_mem.cpp
hle/coprocessor.cpp
2014-04-22 23:35:40 +01:00
hle/syscall.cpp
hle/service/apt.cpp
hle/service/gsp.cpp
hle/service/hid.cpp
hle/service/service.cpp
hle/service/srv.cpp
2014-04-10 04:09:05 +01:00
hw/hw.cpp
2014-04-22 23:35:40 +01:00
hw/lcd.cpp
hw/ndma.cpp)
2013-08-30 04:35:09 +01:00
2014-05-01 00:56:25 +01:00
set(HEADS core.h
core_timing.h
loader.h
mem_map.h
system.h
arm/disassembler/arm_disasm.h
2014-05-17 07:39:27 +01:00
arm/disassembler/load_symbol_map.h
2014-05-01 00:56:25 +01: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 07:39:27 +01: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 00:56:25 +01:00
elf/elf_reader.h
elf/elf_types.h
2014-05-01 04:12:01 +01:00
file_sys/directory_file_system.h
2014-05-01 00:56:25 +01:00
file_sys/file_sys.h
file_sys/meta_file_system.h
2014-05-17 07:39:27 +01:00
hle/config_mem.h
hle/coprocessor.h
2014-05-01 04:12:01 +01:00
hle/hle.h
2014-05-01 00:56:25 +01:00
hle/syscall.h
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} ${HEADS})