mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
ddb3d908c9
svn path=/branches/shell-experiments/; revision=62286
18 lines
418 B
CMake
18 lines
418 B
CMake
|
|
spec2def(scsiport.sys scsiport.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
scsiport.c
|
|
stubs.c
|
|
precomp.h)
|
|
|
|
add_library(scsiport SHARED
|
|
${SOURCE}
|
|
scsiport.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/scsiport.def)
|
|
|
|
add_pch(scsiport precomp.h SOURCE)
|
|
set_module_type(scsiport kernelmodedriver)
|
|
add_importlibs(scsiport ntoskrnl hal)
|
|
|
|
add_cd_file(TARGET scsiport DESTINATION reactos/system32/drivers NO_CAB FOR all)
|