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