reactos/dll/win32/hid/CMakeLists.txt
Amine Khaldi ddb3d908c9 * Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
svn path=/branches/shell-experiments/; revision=62286
2014-02-22 10:31:26 +00:00

20 lines
349 B
CMake

list(APPEND SOURCE
hid.c
stubs.c
precomp.h)
spec2def(hid.dll hid.spec)
add_library(hid SHARED
${SOURCE}
hid.rc
${CMAKE_CURRENT_BINARY_DIR}/hid.def)
set_module_type(hid win32dll UNICODE)
add_importlibs(hid msvcrt kernel32 ntdll)
add_pch(hid precomp.h SOURCE)
add_cd_file(TARGET hid DESTINATION reactos/system32 FOR all)