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