2011-05-16 13:12:07 +00:00
|
|
|
|
2018-01-28 22:44:28 +00:00
|
|
|
include_directories(
|
|
|
|
${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers)
|
|
|
|
|
2014-02-09 17:28:01 +00:00
|
|
|
list(APPEND SOURCE
|
2011-05-16 13:12:07 +00:00
|
|
|
fdo.c
|
|
|
|
pci.c
|
|
|
|
pdo.c
|
2014-02-09 17:28:01 +00:00
|
|
|
pci.h)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(pci MODULE ${SOURCE} pci.rc)
|
2011-05-16 13:12:07 +00:00
|
|
|
set_module_type(pci kernelmodedriver)
|
|
|
|
add_importlibs(pci ntoskrnl hal)
|
2014-02-09 17:28:01 +00:00
|
|
|
add_pch(pci pci.h SOURCE)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET pci DESTINATION reactos/system32/drivers NO_CAB FOR all)
|