1
2spec2def(pciidex.sys pciidex.spec ADD_IMPORTLIB)
3
4list(APPEND SOURCE
5    fdo.c
6    miniport.c
7    misc.c
8    pciidex.c
9    pdo.c
10    pciidex.h)
11
12add_library(pciidex SHARED
13    ${SOURCE}
14    pciidex.rc
15    ${CMAKE_CURRENT_BINARY_DIR}/pciidex.def)
16
17add_pch(pciidex pciidex.h SOURCE)
18set_module_type(pciidex kernelmodedriver)
19add_importlibs(pciidex ntoskrnl)
20add_cd_file(TARGET pciidex DESTINATION reactos/system32/drivers NO_CAB FOR all)
21