reactos/drivers/storage/port/storahci/CMakeLists.txt
Eric Kohl 9393c6a48b [STORAGE] Storage driver cleanup part 3
Move the storahci driver into the port directory.
2019-11-30 12:58:59 +01:00

12 lines
316 B
CMake

add_definitions(-DDEBUG)
list(APPEND SOURCE
storahci.c)
add_library(storahci MODULE ${SOURCE} storahci.rc)
set_module_type(storahci kernelmodedriver)
add_importlibs(storahci storport ntoskrnl hal)
add_cd_file(TARGET storahci DESTINATION reactos/system32/drivers NO_CAB FOR all)
add_registry_inf(storahci.inf)