diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-05-01 10:16:49 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-05-01 10:16:49 +0200 |
| commit | 9ff0dffb026eae3b80e3e0b8bbb941e3e3b8b01f (patch) | |
| tree | cc146d4af9c6e48968af7ea74294fc3905edd8a3 /libs/acpi/CMakeLists.txt | |
| parent | bea3a1c32c0a034b201be2c30a69a5f8cdf81896 (diff) | |
| download | kernel-9ff0dffb026eae3b80e3e0b8bbb941e3e3b8b01f.tar.xz kernel-9ff0dffb026eae3b80e3e0b8bbb941e3e3b8b01f.zip | |
acpi: silence IASL compiler output
Diffstat (limited to 'libs/acpi/CMakeLists.txt')
| -rw-r--r-- | libs/acpi/CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libs/acpi/CMakeLists.txt b/libs/acpi/CMakeLists.txt index d6d607a..2c4d76d 100644 --- a/libs/acpi/CMakeLists.txt +++ b/libs/acpi/CMakeLists.txt @@ -87,7 +87,12 @@ if(BUILD_TESTING) foreach(TABLE IN LISTS TEST_TABLES) add_custom_command(OUTPUT "test_data/${TABLE}.aml" - COMMAND "${IASL_EXE}" -p "test_data/${TABLE}.aml" "${CMAKE_CURRENT_SOURCE_DIR}/test_data/${TABLE}.asl" + COMMAND ${CMAKE_COMMAND} + "-DIASL_EXE=${IASL_EXE}" + "-DIASL_OUTPUT=test_data/${TABLE}.aml" + "-DIASL_INPUT=${CMAKE_CURRENT_SOURCE_DIR}/test_data/${TABLE}.asl" + "-P" + "${CMAKE_CURRENT_SOURCE_DIR}/cmake/Scripts/IaslCompile.cmake" DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/test_data/${TABLE}.asl" COMMENT "Compiling test_data/${TABLE}.asl" VERBATIM |
