diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2025-07-14 16:25:00 +0000 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2025-07-14 16:25:00 +0000 |
| commit | ec572bff8150e2f8cd2dc99e053c5e8c8a0b99e3 (patch) | |
| tree | f66048c99b5015bf9cb7603b7be09c2a28d766ee /CMakeLists.txt | |
| parent | 25483b7af8df6b08d460f807fda04c6d409bd44e (diff) | |
| download | teachos-ec572bff8150e2f8cd2dc99e053c5e8c8a0b99e3.tar.xz teachos-ec572bff8150e2f8cd2dc99e053c5e8c8a0b99e3.zip | |
arch: prepare interfaces
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e10da55..c08753b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,16 +25,16 @@ set(CMAKE_CXX_EXTENSIONS NO) # Global Build System Configuration #]============================================================================] +add_executable("kernel") + add_subdirectory("libs") add_subdirectory("kern") add_subdirectory("arch") -add_executable("kernel") - target_link_libraries("kernel" PRIVATE "kern" - "arch::all" - # "arch-${CMAKE_SYSTEM_PROCESSOR}" + "arch::any" + "arch::${CMAKE_SYSTEM_PROCESSOR}" ) # #[============================================================================[ |
