forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
66 lines (63 loc) · 1021 Bytes
/
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
# Aseprite UI Library
# Copyright (C) 2019-2022 Igara Studio S.A.
# Copyright (C) 2001-2018 David Capello
if(WIN32)
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
endif()
add_library(ui-lib
accelerator.cpp
alert.cpp
app_state.cpp
box.cpp
button.cpp
combobox.cpp
component.cpp
cursor.cpp
display.cpp
entry.cpp
event.cpp
fit_bounds.cpp
graphics.cpp
grid.cpp
image_view.cpp
int_entry.cpp
intern.cpp
label.cpp
link_label.cpp
listbox.cpp
listitem.cpp
manager.cpp
menu.cpp
message.cpp
message_loop.cpp
move_region.cpp
overlay.cpp
overlay_manager.cpp
paint.cpp
paint_event.cpp
panel.cpp
popup_window.cpp
property.cpp
register_message.cpp
resize_event.cpp
scroll_bar.cpp
scroll_helper.cpp
separator.cpp
size_hint_event.cpp
slider.cpp
splitter.cpp
style.cpp
system.cpp
textbox.cpp
theme.cpp
timer.cpp
tooltips.cpp
view.cpp
viewport.cpp
widget.cpp
window.cpp)
target_link_libraries(ui-lib
laf-os
laf-gfx
laf-base
obs)