1
2list(APPEND SOURCE
3    compbatt.c
4    compmisc.c
5    comppnp.c
6    compbatt.h)
7
8add_library(compbatt SHARED
9    ${SOURCE}
10    guid.c
11    compbatt.rc)
12
13set_module_type(compbatt kernelmodedriver)
14add_importlibs(compbatt ntoskrnl hal battc)
15add_pch(compbatt compbatt.h SOURCE)
16add_cd_file(TARGET compbatt DESTINATION reactos/system32/drivers FOR all)
17