1 2include_directories( 3 ${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers) 4 5list(APPEND SOURCE 6 fdo.c 7 pci.c 8 pdo.c 9 pci.h) 10 11add_library(pci MODULE ${SOURCE} pci.rc) 12set_module_type(pci kernelmodedriver) 13add_importlibs(pci ntoskrnl hal) 14add_pch(pci pci.h SOURCE) 15add_cd_file(TARGET pci DESTINATION reactos/system32/drivers NO_CAB FOR all) 16