mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
b82bf8ce16
Also add a hack to avoid failing on now occurring resource conflict detection and try to fix at least one resource in ACPI hal. CORE-10146 CORE-12892
15 lines
353 B
CMake
15 lines
353 B
CMake
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers)
|
|
|
|
list(APPEND SOURCE
|
|
fdo.c
|
|
pci.c
|
|
pdo.c
|
|
pci.h)
|
|
|
|
add_library(pci MODULE ${SOURCE} pci.rc)
|
|
set_module_type(pci kernelmodedriver)
|
|
add_importlibs(pci ntoskrnl hal)
|
|
add_pch(pci pci.h SOURCE)
|
|
add_cd_file(TARGET pci DESTINATION reactos/system32/drivers NO_CAB FOR all)
|