mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
f4460c3fcd
msutb.dll is the GUI back-end of Language Bar (Tipbar). - Add msutb.dll module at dll/win32/msutb/. - The implementation of msutb.dll is currently stub. - Modify msctf.spec and msctf.idl. - Add <cicero/cicutb.h>. - Adapt ctfmon.exe to these changes. CORE-19362, CORE-19363
19 lines
565 B
CMake
19 lines
565 B
CMake
|
|
spec2def(msutb.dll msutb.spec ADD_IMPORTLIB)
|
|
|
|
list(APPEND SOURCE
|
|
msutb.cpp)
|
|
|
|
#file(GLOB msutb_rc_deps res/*.*)
|
|
#add_rc_deps(msutb.rc ${msutb_rc_deps})
|
|
|
|
add_library(msutb MODULE
|
|
${SOURCE}
|
|
msutb.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/msutb.def)
|
|
set_module_type(msutb win32dll UNICODE)
|
|
add_dependencies(msutb msctf psdk)
|
|
target_link_libraries(msutb wine uuid atl_classes)
|
|
add_importlibs(msutb user32 gdi32 advapi32 comctl32 msvcrt kernel32 ntdll)
|
|
add_delay_importlibs(msutb msctf ole32 oleaut32)
|
|
add_cd_file(TARGET msutb DESTINATION reactos/system32 FOR all)
|