From 7e785ff5a7a2e9c98fd1679e74a728f4babf722a Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Sat, 7 Oct 2023 16:10:24 +0200 Subject: build: put libraries into 'lib' folder --- source/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index 3fa076c..326fc8d 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -8,6 +8,7 @@ project("kernel" ) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/bin") +set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}/lib") add_subdirectory("boot") add_subdirectory("kernel") -- cgit v1.2.3