mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
fc3eeb61f3
Refactoring and reduce binary size. JIRA issue: CORE-19268 - Add cicero static library in sdk/lib/cicero folder. - Delete sdk/include/reactos/cicero folder. - Adapt the dependencies to these changes. - Make ctfmon, msutb, and msctf modules UNICODE.
14 lines
477 B
CMake
14 lines
477 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 UNICODE)
|
|
add_dependencies(ctfmon msctf msutb)
|
|
target_link_libraries(ctfmon uuid cicero)
|
|
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)
|