xref: /reactos/drivers/hid/hidclass/CMakeLists.txt (revision 7eead935)
1
2spec2def(hidclass.sys hidclass.spec ADD_IMPORTLIB)
3
4list(APPEND SOURCE
5    fdo.c
6    hidclass.c
7    pdo.c
8    precomp.h)
9
10add_library(hidclass MODULE
11    ${SOURCE}
12    guid.c
13    hidclass.rc
14    ${CMAKE_CURRENT_BINARY_DIR}/hidclass.def)
15
16set_module_type(hidclass kernelmodedriver ENTRYPOINT 0)
17add_importlibs(hidclass ntoskrnl hidparse hal)
18add_pch(hidclass precomp.h SOURCE)
19add_cd_file(TARGET hidclass DESTINATION reactos/system32/drivers NO_CAB FOR all)
20