* Sync to trunk HEAD (r53298).
[reactos.git] / dll / cpl / input / CMakeLists.txt
1
2 set_unicode()
3 set_rc_compiler()
4
5 spec2def(input.dll input.spec)
6
7 add_library(input SHARED
8 input.c
9 settings.c
10 keysettings.c
11 add.c
12 changekeyseq.c
13 input.rc
14 ${CMAKE_CURRENT_BINARY_DIR}/input.def)
15
16 set_module_type(input win32dll)
17
18 add_importlibs(input
19 msvcrt
20 advapi32
21 user32
22 comctl32
23 gdi32
24 kernel32)
25
26 add_pch(input input.h)
27 add_cd_file(TARGET input DESTINATION reactos/system32 FOR all)