mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
b819608ed8
svn path=/branches/condrv_restructure/; revision=63104
21 lines
438 B
CMake
21 lines
438 B
CMake
|
|
spec2def(pciidex.sys pciidex.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
fdo.c
|
|
miniport.c
|
|
misc.c
|
|
pciidex.c
|
|
pdo.c
|
|
pciidex.h)
|
|
|
|
add_library(pciidex SHARED
|
|
${SOURCE}
|
|
pciidex.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/pciidex.def)
|
|
|
|
add_pch(pciidex pciidex.h SOURCE)
|
|
set_module_type(pciidex kernelmodedriver)
|
|
add_importlibs(pciidex ntoskrnl)
|
|
add_cd_file(TARGET pciidex DESTINATION reactos/system32/drivers NO_CAB FOR all)
|
|
|