mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
89271fe38d
Add each win32dll module to livecd and remove global temporary add-on from gcc.cmake. Fix pch use in fmifs. Enable remaining dlls in dll/win32/CMakeLists.txt. svn path=/branches/cmake-bringup/; revision=49230
27 lines
495 B
CMake
27 lines
495 B
CMake
|
|
set_unicode()
|
|
|
|
spec2def(input ${CMAKE_CURRENT_SOURCE_DIR}/input.spec ${CMAKE_CURRENT_BINARY_DIR}/input.def)
|
|
|
|
add_library(input SHARED
|
|
input.c
|
|
settings.c
|
|
keysettings.c
|
|
add.c
|
|
changekeyseq.c
|
|
input.rc)
|
|
|
|
set_module_type(input win32dll)
|
|
|
|
target_link_libraries(input ${CMAKE_CURRENT_BINARY_DIR}/input.def)
|
|
|
|
add_importlibs(input
|
|
msvcrt
|
|
advapi32
|
|
user32
|
|
comctl32
|
|
gdi32
|
|
kernel32)
|
|
|
|
add_dependencies(input input_def)
|
|
add_livecd_target(input reactos/system32)
|