mirror of
https://github.com/reactos/reactos.git
synced 2025-04-28 01:11:35 +00:00

Cicero interface is not Unicode (W) but ANSI (A). - ctfmon.exe is ANSI, not Unicode. - msutb.dll is ANSI, not Unicode. - Apply generic text mapping to the cicero headers. - Include <tchar.h> to use generic text mapping. CORE-19361, CORE-19362, CORE-19363
14 lines
462 B
CMake
14 lines
462 B
CMake
|
|
list(APPEND SOURCE
|
|
ctfmon.cpp
|
|
CLoaderWnd.cpp
|
|
CRegWatcher.cpp)
|
|
|
|
add_rc_deps(ctfmon.rc ${CMAKE_CURRENT_SOURCE_DIR}/res/ctfmon.ico)
|
|
add_executable(ctfmon ${SOURCE} ctfmon.rc)
|
|
set_module_type(ctfmon win32gui)
|
|
add_dependencies(ctfmon msctf msutb)
|
|
target_link_libraries(ctfmon uuid)
|
|
add_importlibs(ctfmon msctf msutb advapi32 shell32 user32 msvcrt kernel32)
|
|
add_pch(ctfmon precomp.h SOURCE)
|
|
add_cd_file(TARGET ctfmon DESTINATION reactos/system32 FOR all)
|