mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
16 lines
378 B
CMake
16 lines
378 B
CMake
|
|
spec2def(hotplug.dll hotplug.spec)
|
|
|
|
list(APPEND SOURCE
|
|
hotplug.c
|
|
enum.c)
|
|
|
|
add_library(hotplug SHARED
|
|
${SOURCE}
|
|
hotplug.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/hotplug.def)
|
|
|
|
set_module_type(hotplug win32dll UNICODE)
|
|
add_importlibs(hotplug user32 gdi32 advapi32 setupapi comctl32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET hotplug DESTINATION reactos/system32 FOR all)
|