mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
678aa63b3a
Instead link to cpprt. This fixes build with GCC 13, which generates symbols that conflict with __cxa_pure_virtual, if there is a pure virtual function in a vtable. Importing __cxa_pure_virtual from a library works for all versions of GCC.
27 lines
732 B
CMake
27 lines
732 B
CMake
|
|
spec2def(msctfime.ime msctfime.spec)
|
|
|
|
list(APPEND SOURCE
|
|
bridge.cpp
|
|
inputcontext.cpp
|
|
misc.cpp
|
|
msctfime.cpp
|
|
profile.cpp
|
|
sinks.cpp
|
|
tls.cpp
|
|
ui.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 cpprt wine uuid cicero)
|
|
add_importlibs(msctfime user32 gdi32 advapi32 msvcrt kernel32 ntdll)
|
|
add_delay_importlibs(msctfime uxtheme shlwapi comctl32 msctf oleaut32 imm32)
|
|
add_cd_file(TARGET msctfime DESTINATION reactos/system32 FOR all)
|