mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
c0c57e2324
- Fix IRP handling, add missing IRP handlers - Specify the device name for DO - The legacy IRQ descriptor is edge-triggered - Improve pool tagging - Place the PNP code in a pageable section CORE-17256
20 lines
442 B
CMake
20 lines
442 B
CMake
|
|
spec2def(pciidex.sys pciidex.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
fdo.c
|
|
miniport.c
|
|
pciidex.c
|
|
pdo.c
|
|
power.c
|
|
pciidex.h)
|
|
|
|
add_library(pciidex MODULE
|
|
${SOURCE}
|
|
pciidex.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/pciidex.def)
|
|
|
|
add_pch(pciidex pciidex.h SOURCE)
|
|
set_module_type(pciidex kernelmodedriver)
|
|
add_importlibs(pciidex ntoskrnl hal)
|
|
add_cd_file(TARGET pciidex DESTINATION reactos/system32/drivers NO_CAB FOR all)
|