1 2spec2def(hid.dll hid.spec ADD_IMPORTLIB) 3 4list(APPEND SOURCE 5 hid.c 6 stubs.c 7 precomp.h) 8 9add_library(hid SHARED 10 ${SOURCE} 11 hid.rc 12 ${CMAKE_CURRENT_BINARY_DIR}/hid.def) 13 14set_module_type(hid win32dll UNICODE) 15add_importlibs(hid msvcrt kernel32 ntdll) 16add_pch(hid precomp.h SOURCE) 17add_cd_file(TARGET hid DESTINATION reactos/system32 FOR all) 18