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