Skip to content

Commit d4c6477

Browse files
authored
[CTFMON][MSCTF][MSCTFIME][MSUTB] Move CTF modules to base/ctf (reactos#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.
1 parent 2a0d98c commit d4c6477

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+9
-11
lines changed

.github/labeler.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,7 @@ Win32SS:
4747
"input method":
4848
- changed-files:
4949
- any-glob-to-any-file:
50-
- base/applications/ctfmon/**
51-
- dll/ime/**
52-
- dll/win32/msctf/**
53-
- dll/win32/msutb/**
50+
- base/ctf/**
5451
- win32ss/user/imm32/**
5552
- win32ss/user/ntuser/ime.c
5653
- win32ss/user/user32/misc/imm.c

base/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

22
add_subdirectory(applications)
3+
add_subdirectory(ctf)
34
add_subdirectory(services)
45
add_subdirectory(setup)
56
add_subdirectory(shell)

base/applications/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ add_subdirectory(cleanmgr)
77
add_subdirectory(clipbrd)
88
add_subdirectory(cmdutils)
99
add_subdirectory(control)
10-
add_subdirectory(ctfmon)
1110
add_subdirectory(drwtsn32)
1211
add_subdirectory(dxdiag)
1312
add_subdirectory(extrac32)

base/ctf/CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
add_subdirectory(ctfmon)
3+
add_subdirectory(msctf)
4+
add_subdirectory(msctfime)
5+
add_subdirectory(msutb)

0 commit comments

Comments
 (0)