[SDK] Don't just infinitely spam the DbgPrint in the bootloader (#6763)
[reactos.git] / drivers / hid / hidclass / CMakeLists.txt
1
2 spec2def(hidclass.sys hidclass.spec ADD_IMPORTLIB)
3
4 list(APPEND SOURCE
5 fdo.c
6 hidclass.c
7 pdo.c)
8
9 list(APPEND PCH_SKIP_SOURCE
10 guid.c)
11
12 add_library(hidclass MODULE
13 ${SOURCE}
14 ${PCH_SKIP_SOURCE}
15 hidclass.rc
16 ${CMAKE_CURRENT_BINARY_DIR}/hidclass.def)
17
18 set_module_type(hidclass kernelmodedriver ENTRYPOINT 0)
19 add_importlibs(hidclass ntoskrnl hidparse hal)
20 add_pch(hidclass precomp.h "${PCH_SKIP_SOURCE}")
21 add_cd_file(TARGET hidclass DESTINATION reactos/system32/drivers NO_CAB FOR all)