aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/CMakeLists.txt
blob: c8d95ba5dca6b79487400c2b2975a9801569b447 (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
set(SRCS    core.cpp
            core_timing.cpp
            loader.cpp
            mem_map.cpp
            mem_map_funcs.cpp
            system.cpp
            arm/disassembler/arm_disasm.cpp
            arm/interpreter/arm_interpreter.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/mmu/arm1176jzf_s_mmu.cpp
            elf/elf_reader.cpp
            file_sys/directory_file_system.cpp
            file_sys/meta_file_system.cpp
            hle/hle.cpp
            hle/mrc.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(HEADS   core.h
            core_timing.h
            loader.h
            mem_map.h
            system.h
            arm/disassembler/arm_disasm.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/mmu/arm1176jzf_s_mmu.h
            arm/mmu/cache.h
            arm/mmu/rb.h
            arm/mmu/tlb.h
            arm/mmu/wb.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/hle.h
            hle/mrc.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} ${HEADS})