mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 13:02:59 +00:00
[CTFMON][MSCTF][MSCTFIME][MSUTB] Move CTF modules to base/ctf (#8040)
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.
This commit is contained in:
parent
2a0d98c2bc
commit
d4c64771cd
77 changed files with 9 additions and 11 deletions
26
base/ctf/msctfime/CMakeLists.txt
Normal file
26
base/ctf/msctfime/CMakeLists.txt
Normal file
|
@ -0,0 +1,26 @@
|
|||
|
||||
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)
|
Loading…
Add table
Add a link
Reference in a new issue