reactos/dll/win32/hid/CMakeLists.txt
Amine Khaldi 099f7ed3c4 - Remove some unneeded pdef files.
- Fix some modules now that they use proper startup code.

svn path=/branches/cmake-bringup/; revision=49809
2010-11-27 00:36:28 +00:00

22 lines
384 B
CMake

set_unicode()
list(APPEND SOURCE
hid.c
stubs.c
hid.rc
${CMAKE_CURRENT_BINARY_DIR}/hid.def)
spec2def(hid.dll hid.spec)
add_library(hid SHARED
${CMAKE_CURRENT_BINARY_DIR}/hid_precomp.h.gch
${SOURCE})
set_module_type(hid win32dll)
add_importlibs(hid msvcrt kernel32 ntdll)
add_pch(hid ${CMAKE_CURRENT_SOURCE_DIR}/precomp.h ${SOURCE})
add_cab_target(hid 1)