reactos/base/ctf/msctf/CMakeLists.txt
Katayama Hirofumi MZ c894716295
[MSCTF][SDK] Add CDisplayAttributeMgr stubs (#8116)
Implementing missing features...
JIRA issue: CORE-19361
- Delete displayattributemgr.c and
  add displayattributemgr.cpp.
- Add CDisplayAttributeMgr class
  as stubs.
2025-06-13 05:31:01 +09:00

42 lines
1.1 KiB
CMake

remove_definitions(-D_WIN32_WINNT=0x502)
add_definitions(-D_WIN32_WINNT=0x600)
spec2def(msctf.dll msctf.spec ADD_IMPORTLIB)
list(APPEND SOURCE
categorymgr.c
compartmentmgr.c
context.c
documentmgr.c
inputprocessor.c
msctf.c
threadmgr.c
precomp.h
${CMAKE_CURRENT_BINARY_DIR}/msctf_stubs.c)
list(APPEND PCH_SKIP_SOURCE
displayattributemgr.cpp
langbarmgr.cpp
mlng.cpp
range.cpp
utils.cpp)
add_library(msctf MODULE
${SOURCE}
${PCH_SKIP_SOURCE}
version.rc
${CMAKE_CURRENT_BINARY_DIR}/msctf.def)
if(MSVC)
# Disable C5286: implicit conversion from enum type 'x' to enum type 'y';
target_compile_options(msctf PRIVATE /wd5286)
endif()
set_module_type(msctf win32dll UNICODE)
target_link_libraries(msctf uuid wine cicero)
add_importlibs(msctf user32 advapi32 advapi32_vista msvcrt kernel32 ntdll)
add_delay_importlibs(msctf shell32 shlwapi ole32 oleaut32 imm32 gdi32)
add_pch(msctf precomp.h SOURCE)
add_cd_file(TARGET msctf DESTINATION reactos/system32 FOR all)
set_wine_module_FIXME(msctf) # CORE-5743: No CONST_VTABLE