mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +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.
12 lines
285 B
CMake
12 lines
285 B
CMake
|
|
spec2def(usbd.sys usbd.spec ADD_IMPORTLIB)
|
|
|
|
add_library(usbd MODULE
|
|
usbd.c
|
|
usbd.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/usbd.def)
|
|
|
|
set_module_type(usbd kernelmodedriver)
|
|
add_importlibs(usbd ntoskrnl hal)
|
|
add_cd_file(TARGET usbd DESTINATION reactos/system32/drivers NO_CAB FOR all)
|