mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
15 lines
396 B
CMake
15 lines
396 B
CMake
|
|
spec2def(scsiport.sys scsiport.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
scsiport.c
|
|
stubs.c
|
|
scsiport.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/scsiport.def)
|
|
|
|
add_library(scsiport SHARED ${SOURCE})
|
|
add_pch(scsiport precomp.h)
|
|
set_module_type(scsiport kernelmodedriver)
|
|
add_importlibs(scsiport ntoskrnl hal)
|
|
|
|
add_cd_file(TARGET scsiport DESTINATION reactos/system32/drivers NO_CAB FOR all)
|