diff options
author | Paul Redmond <paul.redmond@gmail.com> | 2020-05-26 14:20:24 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-29 20:21:10 +0200 |
commit | 4d4e578edfde7299cfbebce8af9f34b82b0fbd21 (patch) | |
tree | a37279fa95d4556c55fa8f81ada75efc7dec4fca /Kernel | |
parent | b0b03c52af284e1473361bd211d8ad422f24faee (diff) | |
download | serenity-4d4e578edfde7299cfbebce8af9f34b82b0fbd21.zip |
Ports: Fix CMake-based ports
The SDL port failed to build because the CMake toolchain filed pointed
to the old root. Now the toolchain file assumes that the Root is in
Build/Root.
Additionally, the AK/ and Kernel/ headers need to be installed in the
root too.
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/CMakeLists.txt b/Kernel/CMakeLists.txt index 19f1637b11..6359825dfe 100644 --- a/Kernel/CMakeLists.txt +++ b/Kernel/CMakeLists.txt @@ -181,4 +181,6 @@ add_custom_command( ) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/kernel.map DESTINATION res) +serenity_install_headers(Kernel) + add_subdirectory(Modules) |