reactos/drivers/storage/storahci/CMakeLists.txt
Aman Priyadarshi 5b776020ae - Fixed CMakeLists issues reported by hbelusca
- Fixed ROS name issue reported by hbelusca
- Handled non fatal device error interrupts
- AhciProcessIO Implemented
- code clean

svn path=/branches/GSoC_2016/AHCI/; revision=71647
2016-06-16 17:02:55 +00:00

12 lines
316 B
CMake

add_definitions(-DDEBUG)
list(APPEND SOURCE
storahci.c)
add_library(storahci SHARED ${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)