kern/kernel/CMakeLists.txt

22 lines
456 B
CMake
Raw Normal View History

# Copyright (C) 2021 fef <owo@fef.moe>. All rights reserved.
2021-09-19 04:50:24 +02:00
add_library(gay_kernel STATIC)
target_include_directories(gay_kernel PRIVATE ${GAY_INCLUDE_DIRS})
2021-09-20 02:03:01 +02:00
target_compile_definitions(gay_kernel INTERFACE ${GAY_KERNEL_DEFINITIONS})
2021-09-19 04:50:24 +02:00
2021-10-07 19:16:21 +02:00
target_link_libraries(gay_kernel PRIVATE c gay_arch)
2021-09-19 04:50:24 +02:00
target_sources(gay_kernel PRIVATE
bits.c
2021-09-20 02:03:01 +02:00
clist.c
2021-10-07 19:16:21 +02:00
irq.c
2021-09-19 04:50:24 +02:00
kprintf.c
kqueue.c
2021-09-19 04:50:24 +02:00
main.c
mutex.c
panic.c
sched.c
2021-09-19 04:50:24 +02:00
)
2021-09-21 18:25:54 +02:00
add_subdirectory(mm)