mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:13:06 +00:00

This PR reorganizes the location of the CTF-related modules to improve grep-ability, understanding, and readability. New folder base/ctf will become incomplete Cicero, CTF or TSF (Text Services Framework). JIRA issue: CORE-19360 JIRA issue: CORE-19361 JIRA issue: CORE-19363 - Move ctfmon, msctf, msctfime, and msutb modules to new directory base/ctf. - Adapt CMakeLists.txt to this move. - Modify .github/labeler.yml and media/doc/WINESYNC.txt. - No code content changes except CMakeLists.txt, .github/labeler.yml, and media/doc/WINESYNC.txt.
19 lines
615 B
CMake
19 lines
615 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 cpprt wine uuid atl_classes cicero)
|
|
add_importlibs(msutb user32 gdi32 advapi32 msvcrt kernel32 ntdll)
|
|
add_delay_importlibs(msutb uxtheme imm32 shlwapi comctl32 msctf ole32 oleacc oleaut32 shell32)
|
|
add_cd_file(TARGET msutb DESTINATION reactos/system32 FOR all)
|