Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- cmake_minimum_required(VERSION 3.20)
- project(TestOS LANGUAGES C CXX ASM)
- add_subdirectory(klib)
- add_subdirectory(klibc)
- add_executable(rpnx-kernel)
- target_sources(rpnx-kernel PRIVATE ./boot.asm kernel.cpp)
- target_link_libraries(rpnx-kernel klibc klib)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement