mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
18 lines
401 B
CMake
18 lines
401 B
CMake
|
|
list(APPEND SOURCE
|
|
compbatt.c
|
|
compmisc.c
|
|
comppnp.c)
|
|
|
|
list(APPEND PCH_SKIP_SOURCE
|
|
guid.c)
|
|
|
|
add_library(compbatt MODULE
|
|
${SOURCE}
|
|
${PCH_SKIP_SOURCE}
|
|
compbatt.rc)
|
|
|
|
set_module_type(compbatt kernelmodedriver)
|
|
add_importlibs(compbatt ntoskrnl hal battc)
|
|
add_pch(compbatt compbatt.h "${PCH_SKIP_SOURCE}")
|
|
add_cd_file(TARGET compbatt DESTINATION reactos/system32/drivers FOR all)
|