Minor changes for ATAPI Srb Functions
[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_rc_deps(input.rc ${CMAKE_CURRENT_SOURCE_DIR}/resources/keyboard-shortcuts.ico)
14
15 add_library(input SHARED
16 ${SOURCE}
17 input.rc
18 ${CMAKE_CURRENT_BINARY_DIR}/input.def)
19
20 set_module_type(input win32dll UNICODE)
21 add_importlibs(input advapi32 user32 comctl32 gdi32 msvcrt kernel32)
22 add_pch(input input.h SOURCE)
23 add_cd_file(TARGET input DESTINATION reactos/system32 FOR all)