https://git.reactos.org/?p=reactos.git;a=commitdiff;h=2dd0c6c32b5bc9498899e…
commit 2dd0c6c32b5bc9498899e70c9c1fa5095fe5b346
Author: Thamatip Chitpong <thamatip.chitpong(a)reactos.org>
AuthorDate: Mon Dec 4 07:17:08 2023 +0700
Commit: GitHub <noreply(a)github.com>
CommitDate: Mon Dec 4 07:17:08 2023 +0700
[ACPI] Add acpi.rc to CMakeLists (#6089)
Fix missing version info.
---
drivers/bus/acpi/CMakeLists.txt | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/drivers/bus/acpi/CMakeLists.txt b/drivers/bus/acpi/CMakeLists.txt
index f9ee29be83d..3535cf5604c 100644
--- a/drivers/bus/acpi/CMakeLists.txt
+++ b/drivers/bus/acpi/CMakeLists.txt
@@ -199,7 +199,10 @@ list(APPEND ACPI_SOURCE
buspdo.c
main.c)
-add_library(acpi MODULE ${ACPI_SOURCE})
+add_library(acpi MODULE
+ ${ACPI_SOURCE}
+ acpi.rc)
+
set_module_type(acpi kernelmodedriver)
target_link_libraries(acpi wdmguid acpica memcmp strtol ${PSEH_LIB})
add_importlibs(acpi ntoskrnl hal)