aboutsummaryrefslogtreecommitdiff
path: root/src/ui/CMakeLists.txt
blob: 56205db024ffe17f8af0a7c16dc085f1cdbd3ae1 (plain)
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
add_library(cru_ui SHARED
	Helper.cpp
	ThemeManager.cpp
	components/Component.cpp
	components/Menu.cpp
	components/PopupButton.cpp
	components/Select.cpp
	controls/Button.cpp
	controls/CheckBox.cpp
	controls/Container.cpp
	controls/Control.cpp
	controls/FlexLayout.cpp
	controls/NoChildControl.cpp
	controls/Popup.cpp
	controls/RootControl.cpp
	controls/ScrollView.cpp
	controls/StackLayout.cpp
	controls/TextBlock.cpp
	controls/TextBox.cpp
	controls/TextHostControlService.cpp
	controls/TreeView.cpp
	controls/Window.cpp
	events/MouseEventArgs.cpp
	helper/ClickDetector.cpp
	helper/ShortcutHub.cpp
	host/LayoutPaintCycler.cpp
	host/WindowHost.cpp
	mapper/BorderStyleMapper.cpp
	mapper/BrushMapper.cpp
	mapper/ColorMapper.cpp
	mapper/CornerRadiusMapper.cpp
	mapper/CursorMapper.cpp
	mapper/FontMapper.cpp
	mapper/Mapper.cpp
	mapper/MapperRegistry.cpp
	mapper/PointMapper.cpp
	mapper/SizeMapper.cpp
	mapper/ThicknessMapper.cpp
	mapper/style/AndConditionMapper.cpp
	mapper/style/BorderStylerMapper.cpp
	mapper/style/ClickStateConditionMapper.cpp
	mapper/style/CursorStylerMapper.cpp
	mapper/style/FocusConditionMapper.cpp
	mapper/style/HoverConditionMapper.cpp
	mapper/style/NoConditionMapper.cpp
	mapper/style/OrConditionMapper.cpp
	mapper/style/StyleRuleMapper.cpp
	mapper/style/StyleRuleSetMapper.cpp
	render/BorderRenderObject.cpp
	render/CanvasRenderObject.cpp
	render/FlexLayoutRenderObject.cpp
	render/LayoutHelper.cpp
	render/RenderObject.cpp
	render/ScrollBar.cpp
	render/ScrollRenderObject.cpp
	render/SingleChildRenderObject.cpp
	render/StackLayoutRenderObject.cpp
	render/TextRenderObject.cpp
	render/TreeRenderObject.cpp
	style/Condition.cpp
	style/Styler.cpp
	style/StyleRule.cpp
	style/StyleRuleSet.cpp
)
target_compile_definitions(cru_ui PRIVATE CRU_UI_EXPORT_API)
target_link_libraries(cru_ui PUBLIC cru_platform_gui cru_xml)