aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/CMakeLists.txt
blob: 14c598bf3da141804aa5109c55fe304ecbdff81b (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
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/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)

set(HEADERS core.h
            core_timing.h
            loader.h
            mem_map.h
            system.h
            arm/disassembler/arm_disasm.h
            arm/disassembler/load_symbol_map.h
            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
            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
            elf/elf_reader.h
            elf/elf_types.h
            file_sys/directory_file_system.h
            file_sys/file_sys.h
            file_sys/meta_file_system.h
            hle/config_mem.h
            hle/coprocessor.h
            hle/hle.h
            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} ${HEADERS})