diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2025-07-24 15:41:58 +0000 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2025-07-24 15:41:58 +0000 |
| commit | f00a0149b55a0fd57cc731b015c6f425bc720aba (patch) | |
| tree | a1f854e2934d98012f7c843c5b38d0c88ee9836b /arch/x86_64/CMakeLists.txt | |
| parent | c6629ba11c17601695b0542d7d1d1bf5dc036d84 (diff) | |
| download | teachos-f00a0149b55a0fd57cc731b015c6f425bc720aba.tar.xz teachos-f00a0149b55a0fd57cc731b015c6f425bc720aba.zip | |
build: rename targets
Diffstat (limited to 'arch/x86_64/CMakeLists.txt')
| -rw-r--r-- | arch/x86_64/CMakeLists.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/x86_64/CMakeLists.txt b/arch/x86_64/CMakeLists.txt index 1cb2f9a..ddc2d46 100644 --- a/arch/x86_64/CMakeLists.txt +++ b/arch/x86_64/CMakeLists.txt @@ -1,16 +1,16 @@ -add_library("arch-x86_64" OBJECT) -add_library("arch::x86_64" ALIAS "arch-x86_64") +add_library("x86_64" OBJECT) +add_library("os::arch" ALIAS "x86_64") -target_include_directories("arch-x86_64" PUBLIC +target_include_directories("x86_64" PUBLIC "include" ) -target_link_libraries("arch-x86_64" PUBLIC - "api::kapi" +target_link_libraries("x86_64" PUBLIC + "os::kapi" "libs::multiboot2" ) -target_sources("arch-x86_64" PRIVATE +target_sources("x86_64" PRIVATE # api::kapi implementation "kapi/io.cpp" "kapi/memory.cpp" |
