reactos/drivers/acpi/cmbatt/CMakeLists.txt
Justin Miller a8da29e888
[ACPI] Move CMBATT and COMPBATT out of the acpi directory (#7599)
Move these out of ACPI in preparation for ACPI_NEW so they keep their juicy commit history.
Also both ACPIs can coexist for awhile as I don't see the old driver getting removed anytime soon.
2025-01-29 00:49:35 -08:00

19 lines
402 B
CMake

list(APPEND SOURCE
cmbatt.c
cmexec.c
cmbpnp.c
cmbwmi.c)
list(APPEND PCH_SKIP_SOURCE
guid.c)
add_library(cmbatt MODULE
${SOURCE}
${PCH_SKIP_SOURCE}
cmbatt.rc)
set_module_type(cmbatt kernelmodedriver)
add_importlibs(cmbatt ntoskrnl hal battc wmilib)
add_pch(cmbatt cmbatt.h "${PCH_SKIP_SOURCE}")
add_cd_file(TARGET cmbatt DESTINATION reactos/system32/drivers FOR all)