mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
23373acbb9
There is no need to compile our DLLs as shared libraries since we are managing symbols exports and imports through spec files. On my system, this reduces the configure-time by a factor of two.
7 lines
262 B
CMake
7 lines
262 B
CMake
|
|
include_directories(..)
|
|
add_library(disk MODULE disk.c disk.rc)
|
|
set_module_type(disk kernelmodedriver)
|
|
add_importlibs(disk class2 scsiport ntoskrnl hal)
|
|
add_cd_file(TARGET disk DESTINATION reactos/system32/drivers NO_CAB FOR all)
|
|
add_registry_inf(disk_reg.inf)
|