aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/CMakeLists.txt
blob: 9cfb9b1c8ca07fd83d98f92dab8829f1323a92f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
            hw/hw.cpp
            hw/hw_lcd.cpp)

add_library(core STATIC ${SRCS})