diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-04-23 17:12:31 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-04-29 08:46:34 +0200 |
| commit | e6c6bda14c9af0df9f4c185701b1e7939db6e1f9 (patch) | |
| tree | 50e5d35f7bcc8e6f5baf2cf1ce2973a0b984d5de | |
| parent | 9d2ec7c3999a550a5c5cdbc2bd952452cd4b7fc0 (diff) | |
| download | teachos-e6c6bda14c9af0df9f4c185701b1e7939db6e1f9.tar.xz teachos-e6c6bda14c9af0df9f4c185701b1e7939db6e1f9.zip | |
elf: restructure according to p1204
| -rw-r--r-- | libs/elf/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | libs/elf/elf/format.hpp (renamed from libs/elf/include/elf/format.hpp) | 0 | ||||
| -rw-r--r-- | libs/elf/elf/section_header.hpp (renamed from libs/elf/include/elf/section_header.hpp) | 0 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libs/elf/CMakeLists.txt b/libs/elf/CMakeLists.txt index f1f5275..22ca200 100644 --- a/libs/elf/CMakeLists.txt +++ b/libs/elf/CMakeLists.txt @@ -39,18 +39,18 @@ add_library("elf::lib" ALIAS "elf") file(GLOB_RECURSE ELF_HEADERS RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} CONFIGURE_DEPENDS - "include/**.hpp" + "elf/**.hpp" ) target_sources("elf" INTERFACE FILE_SET HEADERS - BASE_DIRS "include" + BASE_DIRS "elf" FILES ${ELF_HEADERS} ) target_include_directories("elf" INTERFACE - "include" + "${CMAKE_CURRENT_SOURCE_DIR}" ) set_target_properties("elf" PROPERTIES diff --git a/libs/elf/include/elf/format.hpp b/libs/elf/elf/format.hpp index bc85101..bc85101 100644 --- a/libs/elf/include/elf/format.hpp +++ b/libs/elf/elf/format.hpp diff --git a/libs/elf/include/elf/section_header.hpp b/libs/elf/elf/section_header.hpp index b1305ec..b1305ec 100644 --- a/libs/elf/include/elf/section_header.hpp +++ b/libs/elf/elf/section_header.hpp |
