aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/CMakeLists.txt
blob: b0597db385927767b28d6e34ccbc92ee6ab04b3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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
            arm/interpreter/arm_interpreter.cpp
            arm/interpreter/armcopro.cpp
            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
            arm/interpreter/vfp/vfpinstr.cpp
            arm/interpreter/vfp/vfpsingle.cpp
            arm/interpreter/mmu/arm1176jzf_s_mmu.cpp
            arm/interpreter/mmu/cache.cpp
            arm/interpreter/mmu/maverick.cpp
            arm/interpreter/mmu/rb.cpp
            arm/interpreter/mmu/sa_mmu.cpp
            arm/interpreter/mmu/tlb.cpp
            arm/interpreter/mmu/wb.cpp
            arm/interpreter/mmu/xscale_copro.cpp
            elf/elf_reader.cpp
            file_sys/directory_file_system.cpp
            file_sys/meta_file_system.cpp
            hle/hle.cpp
            hle/config_mem.cpp
            hle/coprocessor.cpp
            hle/syscall.cpp
            hle/kernel/kernel.cpp
            hle/kernel/thread.cpp
            hle/service/apt.cpp
            hle/service/gsp.cpp
            hle/service/hid.cpp
            hle/service/service.cpp
            hle/service/srv.cpp
            hw/hw.cpp
            hw/lcd.cpp
            hw/ndma.cpp)

add_library(core STATIC ${SRCS})