reactos/dll/cpl/input/CMakeLists.txt
Jérôme Gardou 91f3191275 [CMAKE]
- refactor a bit add_cd_file for more flexibility. Add FOR argument for specifying target cd images.

svn path=/branches/cmake-bringup/; revision=51749
2011-05-14 20:54:46 +00:00

26 lines
412 B
CMake

set_unicode()
set_rc_compiler()
spec2def(input.dll input.spec)
add_library(input SHARED
input.c
settings.c
keysettings.c
add.c
changekeyseq.c
input.rc
${CMAKE_CURRENT_BINARY_DIR}/input.def)
set_module_type(input win32dll)
add_importlibs(input
msvcrt
advapi32
user32
comctl32
gdi32
kernel32)
add_cd_file(TARGET input DESTINATION reactos/system32 FOR all)