[CMAKE]
[reactos.git] / dll / cpl / input / CMakeLists.txt
1
2 set_unicode()
3
4 spec2def(input ${CMAKE_CURRENT_SOURCE_DIR}/input.spec ${CMAKE_CURRENT_BINARY_DIR}/input.def)
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
14 set_module_type(input win32dll)
15
16 target_link_libraries(input ${CMAKE_CURRENT_BINARY_DIR}/input.def)
17
18 add_importlibs(input
19 msvcrt
20 advapi32
21 user32
22 comctl32
23 gdi32
24 kernel32)
25
26 add_dependencies(input input_def)
27 add_cab_target(input 1)