feat: migrated some sources to kernel core

This commit is contained in:
2023-10-04 20:54:51 +02:00
parent 295c11e107
commit 21f15f4575
3 changed files with 3 additions and 0 deletions

View File

@@ -61,6 +61,8 @@ endif ()
file(GLOB KERNEL_SOURCES file(GLOB KERNEL_SOURCES
src/rt/*.c src/rt/*.c
src/ulibc/*.c) src/ulibc/*.c)
file(GLOB_RECURSE KERNEL_CORE_SOURCES
src/rt/core/**.c)
file(GLOB PLATFORM_GENERIC_SOURCES src/platform/generic/*.c) file(GLOB PLATFORM_GENERIC_SOURCES src/platform/generic/*.c)
if (${USE_DEBUG}) if (${USE_DEBUG})
@@ -98,6 +100,7 @@ endforeach ()
# Define aggregate sources # Define aggregate sources
set(KERNEL_SOURCE_FILES set(KERNEL_SOURCE_FILES
${KERNEL_SOURCES} ${KERNEL_SOURCES}
${KERNEL_CORE_SOURCES}
${LIMINE_KERNEL_SOURCES} ${LIMINE_KERNEL_SOURCES}
${DEBUG_KERNEL_SOURCES} ${DEBUG_KERNEL_SOURCES}
${PLATFORM_GENERIC_SOURCES} ${PLATFORM_GENERIC_SOURCES}