-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
90 lines (85 loc) · 2.13 KB
/
CMakeLists.txt
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
90
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(micro_doom)
include_directories(
./inc
./port/src
./port/Doom/include
)
target_sources(app PRIVATE
src/user_main.c
src/user_display.c
src/user_flash.c
src/user_time.c
port/src/display.c
port/src/main.c
port/src/printf.c
# port/src/usb.c
# port/src/usbCdc.c
# port/src/usbDeviceImplementation.c
# port/src/ymodem.c
port/src/display.c
port/src/font8x8.c
port/src/graphics.c
port/src/pwm_audio.c
port/src/qspi.c
port/src/keyboard.c
port/Doom/source/am_map.c
port/Doom/source/d_client.c
port/Doom/source/d_items.c
port/Doom/source/d_main.c
port/Doom/source/doom_iwad.c
port/Doom/source/f_finale.c
port/Doom/source/f_wipe.c
port/Doom/source/g_game.c
port/Doom/source/global_data.c
port/Doom/source/hu_lib.c
port/Doom/source/hu_stuff.c
port/Doom/source/i_audio.c
port/Doom/source/i_main.c
port/Doom/source/i_spi_support.c
port/Doom/source/i_video.c
port/Doom/source/info.c
port/Doom/source/m_bbox.c
port/Doom/source/m_cheat.c
port/Doom/source/m_menu.c
port/Doom/source/m_random.c
port/Doom/source/p_ceilng.c
port/Doom/source/p_doors.c
port/Doom/source/p_enemy.c
port/Doom/source/p_floor.c
port/Doom/source/p_genlin.c
port/Doom/source/p_inter.c
port/Doom/source/p_lights.c
port/Doom/source/p_map.c
port/Doom/source/p_maputl.c
port/Doom/source/p_mobj.c
port/Doom/source/p_plats.c
port/Doom/source/p_pspr.c
port/Doom/source/p_setup.c
port/Doom/source/p_sight.c
port/Doom/source/p_spec.c
port/Doom/source/p_switch.c
port/Doom/source/p_telept.c
port/Doom/source/p_tick.c
port/Doom/source/p_user.c
port/Doom/source/r_data.c
port/Doom/source/r_draw.c
port/Doom/source/r_fast_stuff.c
port/Doom/source/r_main.c
port/Doom/source/r_patch.c
port/Doom/source/r_plane.c
port/Doom/source/r_things.c
port/Doom/source/s_sound.c
port/Doom/source/sounds.c
port/Doom/source/st_gfx.c
port/Doom/source/st_lib.c
port/Doom/source/st_stuff.c
port/Doom/source/tables.c
port/Doom/source/v_video.c
port/Doom/source/version.c
port/Doom/source/w_wad.c
port/Doom/source/wi_stuff.c
port/Doom/source/z_bmalloc.c
port/Doom/source/z_zone.c
)