-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
98 lines (94 loc) · 2.55 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
cmake_minimum_required(VERSION 3.25.0)
project(DeerWritingBrush)
# http://www.utf8everywhere.org/
add_definitions(
/D_UNICODE=1
/DUNICODE=1
)
add_library(DeerWritingBrush SHARED
"./ActiveLanguageProfileNotifySink.cpp"
"./BaseDictionaryEngine.cpp"
"./BaseDictionaryEngine.h"
"./BaseWindow.cpp"
"./BaseWindow.h"
"./ButtonWindow.cpp"
"./ButtonWindow.h"
"./CandidateListUIPresenter.cpp"
"./CandidateListUIPresenter.h"
"./CandidateWindow.cpp"
"./CandidateWindow.h"
"./Compartment.cpp"
"./Compartment.h"
"./Composition.cpp"
"./CompositionProcessorEngine.cpp"
"./CompositionProcessorEngine.h"
"./Define.h"
"./DictionaryParser.cpp"
"./DictionaryParser.h"
"./DictionarySearch.cpp"
"./DictionarySearch.h"
"./DisplayAttribute.cpp"
"./DisplayAttributeInfo.cpp"
"./DisplayAttributeInfo.h"
"./DisplayAttributeProvider.cpp"
"./DisplayString.h"
"./DllMain.cpp"
"./EditSession.cpp"
"./EditSession.h"
"./EndComposition.cpp"
"./EnumDisplayAttributeInfo.cpp"
"./EnumDisplayAttributeInfo.h"
"./EnumTfCandidates.cpp"
"./EnumTfCandidates.h"
"./File.cpp"
"./File.h"
"./FileMapping.cpp"
"./FileMapping.h"
"./FunctionProviderSink.cpp"
"./GetTextExtentEditSession.cpp"
"./GetTextExtentEditSession.h"
"./Globals.cpp"
"./Globals.h"
"./KeyEventSink.cpp"
"./KeyHandler.cpp"
"./KeyHandlerEditSession.cpp"
"./KeyHandlerEditSession.h"
"./KeyStateCategory.cpp"
"./KeyStateCategory.h"
"./LanguageBar.cpp"
"./LanguageBar.h"
"./Private.h"
"./Register.cpp"
"./RegKey.cpp"
"./RegKey.h"
"./resource.h"
"./SampleIME.cpp"
"./SampleIME.def"
"./SampleIME.h"
"./SampleIME.rc"
"./SampleIMEBaseStructure.cpp"
"./SampleIMEBaseStructure.h"
"./SampleIMEStructureArray.h"
"./ScrollBarWindow.cpp"
"./ScrollBarWindow.h"
"./SearchCandidateProvider.cpp"
"./SearchCandidateProvider.h"
"./Server.cpp"
"./ShadowWindow.cpp"
"./ShadowWindow.h"
"./StartComposition.cpp"
"./stdafx.h"
"./TableDictionaryEngine.cpp"
"./TableDictionaryEngine.h"
"./TextEditSink.cpp"
"./TfInputProcessorProfile.cpp"
"./TfInputProcessorProfile.h"
"./TfTextLayoutSink.cpp"
"./TfTextLayoutSink.h"
"./ThreadFocusSink.cpp"
"./ThreadMgrEventSink.cpp"
"./TipCandidateList.cpp"
"./TipCandidateList.h"
"./TipCandidateString.cpp"
"./TipCandidateString.h"
)