2016-08-07 13:07:23 +00:00
|
|
|
|
2016-08-09 21:49:06 +00:00
|
|
|
spec2def(input.dll input.spec)
|
2016-08-07 13:07:23 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
input.c
|
2016-08-07 23:28:50 +00:00
|
|
|
input.h
|
2016-08-08 20:30:36 +00:00
|
|
|
input_list.c
|
|
|
|
input_list.h
|
2016-08-07 23:28:50 +00:00
|
|
|
layout_list.c
|
|
|
|
layout_list.h
|
|
|
|
locale_list.c
|
|
|
|
locale_list.h
|
2016-08-08 20:30:36 +00:00
|
|
|
settings_page.c
|
|
|
|
advanced_settings_page.c
|
|
|
|
add_dialog.c
|
|
|
|
edit_dialog.c
|
2016-08-09 21:03:55 +00:00
|
|
|
key_settings_dialog.c
|
|
|
|
key_sequence_dialog.c)
|
2016-08-07 13:07:23 +00:00
|
|
|
|
|
|
|
add_rc_deps(input.rc ${CMAKE_CURRENT_SOURCE_DIR}/resources/keyboard-shortcuts.ico)
|
|
|
|
|
2016-08-09 21:49:06 +00:00
|
|
|
add_library(input SHARED
|
2016-08-07 13:07:23 +00:00
|
|
|
${SOURCE}
|
|
|
|
input.rc
|
2016-08-09 21:49:06 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/input.def)
|
2016-08-07 13:07:23 +00:00
|
|
|
|
2016-08-09 21:49:06 +00:00
|
|
|
set_module_type(input win32dll UNICODE)
|
|
|
|
add_importlibs(input advapi32 user32 comctl32 gdi32 msvcrt kernel32 setupapi)
|
|
|
|
add_pch(input input.h SOURCE)
|
|
|
|
add_cd_file(TARGET input DESTINATION reactos/system32 FOR all)
|