reactos/drivers/storage/ide/pciidex/CMakeLists.txt
Dmitry Borisov c0c57e2324 [PCIIDEX] Improve and fix the driver
- 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
2023-07-16 13:20:30 +03:00

21 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)