* Sync up to trunk head (r65481).
[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 add_importlibs(input advapi32 user32 comctl32 gdi32 msvcrt kernel32)
20 add_pch(input input.h SOURCE)
21 add_cd_file(TARGET input DESTINATION reactos/system32 FOR all)