diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-04-15 20:46:29 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-04-15 20:46:29 +0200 |
| commit | 27c654f3f0a069113b6abb70817cfe2c5096711e (patch) | |
| tree | eda64e44953bbb3a94d86db1a572491745e619ac /libs/acpi/CMakeLists.txt | |
| parent | 6344a2a81b94a00aaaa987d0e0d40993ed581d5e (diff) | |
| download | teachos-27c654f3f0a069113b6abb70817cfe2c5096711e.tar.xz teachos-27c654f3f0a069113b6abb70817cfe2c5096711e.zip | |
acpi: add basic table type
Diffstat (limited to 'libs/acpi/CMakeLists.txt')
| -rw-r--r-- | libs/acpi/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/acpi/CMakeLists.txt b/libs/acpi/CMakeLists.txt index b9c607d..f850fe4 100644 --- a/libs/acpi/CMakeLists.txt +++ b/libs/acpi/CMakeLists.txt @@ -19,7 +19,8 @@ file(GLOB_RECURSE ACPI_HEADERS ) target_sources("acpi" PRIVATE - "acpi/checksum.cpp" + "acpi/common/basic_table.cpp" + "acpi/common/checksum.cpp" "acpi/common/table_header.cpp" "acpi/madt.cpp" "acpi/pointers.cpp" @@ -60,6 +61,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/basic_table.test.cpp" "acpi/common/table_header.test.cpp" "acpi/madt.test.cpp" "acpi/pointers.test.cpp" |
