- Rename input_new to input

svn path=/trunk/; revision=72177
This commit is contained in:
Dmitry Chapyshev
2016-08-09 21:49:06 +00:00
parent ce6a889a7b
commit d89d2873bc
40 changed files with 7 additions and 9 deletions
-1
View File
@@ -6,7 +6,6 @@ add_subdirectory(desk)
add_subdirectory(hdwwiz)
add_subdirectory(inetcpl)
add_subdirectory(input)
#add_subdirectory(input_new)
add_subdirectory(intl)
add_subdirectory(joy)
#add_subdirectory(liccpa)#disabled in trunk
@@ -1,6 +1,5 @@
PROJECT(INPUT_NEW)
spec2def(input_new.dll input.spec)
spec2def(input.dll input.spec)
list(APPEND SOURCE
input.c
@@ -20,12 +19,12 @@ list(APPEND SOURCE
add_rc_deps(input.rc ${CMAKE_CURRENT_SOURCE_DIR}/resources/keyboard-shortcuts.ico)
add_library(input_new SHARED
add_library(input SHARED
${SOURCE}
input.rc
${CMAKE_CURRENT_BINARY_DIR}/input_new.def)
${CMAKE_CURRENT_BINARY_DIR}/input.def)
set_module_type(input_new win32dll UNICODE)
add_importlibs(input_new advapi32 user32 comctl32 gdi32 msvcrt kernel32 setupapi)
add_pch(input_new input.h SOURCE)
add_cd_file(TARGET input_new DESTINATION reactos/system32 FOR all)
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)

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB