9 lines
304 B
CMake
9 lines
304 B
CMake
cmake_minimum_required(VERSION 3.14)
|
|
|
|
target_sources(kernel PUBLIC
|
|
${CHURLOS_SRC_DIR}/kernel/memory/Allocator.cc
|
|
${CHURLOS_SRC_DIR}/kernel/memory/BumpAllocator.cc
|
|
${CHURLOS_SRC_DIR}/kernel/memory/LinkedListAllocator.cc
|
|
${CHURLOS_SRC_DIR}/kernel/memory/Paging.cc
|
|
)
|