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