mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00

- Add link to imm32.dll. - Add <cicero/imclock.h>. - Add INIT_GUIDMAP constant to <immdev.h>. - Implement CtfImeIsGuidMapEnable by using them. CORE-19360
21 lines
620 B
CMake
21 lines
620 B
CMake
|
|
include_directories(
|
|
${REACTOS_SOURCE_DIR}/win32ss/include)
|
|
|
|
spec2def(msctfime.ime msctfime.spec)
|
|
|
|
list(APPEND SOURCE
|
|
msctfime.cpp)
|
|
|
|
file(GLOB msctfime_rc_deps res/*.*)
|
|
add_rc_deps(msctfime.rc ${msctfime_rc_deps})
|
|
|
|
add_library(msctfime MODULE
|
|
${SOURCE}
|
|
msctfime.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/msctfime.def)
|
|
set_module_type(msctfime win32dll UNICODE)
|
|
set_target_properties(msctfime PROPERTIES SUFFIX ".ime")
|
|
target_link_libraries(msctfime wine uuid)
|
|
add_importlibs(msctfime imm32 user32 gdi32 advapi32 comctl32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET msctfime DESTINATION reactos/system32 FOR all)
|