aboutsummaryrefslogtreecommitdiff
path: root/libs/acpi/CMakeLists.txt
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-04-15 16:19:00 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-04-15 16:19:00 +0200
commit6344a2a81b94a00aaaa987d0e0d40993ed581d5e (patch)
treee5d77336ba660b30a6ee9b3fc65a77a20ddcbc85 /libs/acpi/CMakeLists.txt
parent1113e812359a66591b0854a9f723ab8cd8b09274 (diff)
downloadteachos-6344a2a81b94a00aaaa987d0e0d40993ed581d5e.tar.xz
teachos-6344a2a81b94a00aaaa987d0e0d40993ed581d5e.zip
acpi: reimplement the common table header
Diffstat (limited to 'libs/acpi/CMakeLists.txt')
-rw-r--r--libs/acpi/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/acpi/CMakeLists.txt b/libs/acpi/CMakeLists.txt
index 30e1aca..b9c607d 100644
--- a/libs/acpi/CMakeLists.txt
+++ b/libs/acpi/CMakeLists.txt
@@ -20,6 +20,7 @@ file(GLOB_RECURSE ACPI_HEADERS
target_sources("acpi" PRIVATE
"acpi/checksum.cpp"
+ "acpi/common/table_header.cpp"
"acpi/madt.cpp"
"acpi/pointers.cpp"
"acpi/sdt.cpp"
@@ -43,6 +44,7 @@ if(NOT CMAKE_CROSSCOMPILING)
"basic_madt"
"basic_rsdt"
"basic_rsdp"
+ "table_header"
)
foreach(TABLE IN LISTS TEST_TABLES)
@@ -58,6 +60,7 @@ if(NOT CMAKE_CROSSCOMPILING)
set_source_files_properties("test_data/tables.S" PROPERTIES OBJECT_DEPENDS "${GENERATED_TABLE_BLOBS}")
add_executable("acpi_tests"
+ "acpi/common/table_header.test.cpp"
"acpi/madt.test.cpp"
"acpi/pointers.test.cpp"