forked from flameshot-org/flameshot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
68 lines (67 loc) · 2.84 KB
/
CMakeLists.txt
File metadata and controls
68 lines (67 loc) · 2.84 KB
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
target_sources(flameshot PRIVATE arrow/arrowtool.h arrow/arrowtool.cpp)
target_sources(flameshot PRIVATE pixelate/pixelatetool.h pixelate/pixelatetool.cpp)
target_sources(flameshot PRIVATE circle/circletool.h circle/circletool.cpp)
target_sources(flameshot PRIVATE circlecount/circlecounttool.h circlecount/circlecounttool.cpp)
target_sources(flameshot PRIVATE copy/copytool.h copy/copytool.cpp)
target_sources(flameshot PRIVATE exit/exittool.h exit/exittool.cpp)
target_sources(flameshot PRIVATE sizeincrease/sizeincreasetool.h sizeincrease/sizeincreasetool.cpp)
target_sources(flameshot PRIVATE sizedecrease/sizedecreasetool.h sizedecrease/sizedecreasetool.cpp)
target_sources(
flameshot
PRIVATE imgupload/storages/imgur/imguruploader.h
imgupload/storages/imgur/imguruploader.cpp
imgupload/storages/imguploaderbase.h
imgupload/storages/imguploaderbase.cpp
imgupload/imguploadertool.h
imgupload/imguploadertool.cpp
imgupload/imguploadermanager.h
imgupload/imguploadermanager.cpp
)
target_sources(
flameshot
PRIVATE launcher/applaunchertool.h
launcher/applauncherwidget.h
launcher/launcheritemdelegate.h
launcher/terminallauncher.h
launcher/applaunchertool.cpp
launcher/applauncherwidget.cpp
launcher/launcheritemdelegate.cpp
launcher/openwithprogram.cpp
launcher/terminallauncher.cpp)
target_sources(flameshot PRIVATE line/linetool.h line/linetool.cpp)
target_sources(flameshot PRIVATE marker/markertool.h marker/markertool.cpp)
target_sources(flameshot PRIVATE move/movetool.h move/movetool.cpp)
target_sources(flameshot PRIVATE pencil/penciltool.h pencil/penciltool.cpp)
target_sources(
flameshot
PRIVATE pin/pintool.h
pin/pinwidget.h
pin/pintool.cpp
pin/pinwidget.cpp)
target_sources(flameshot PRIVATE rectangle/rectangletool.h rectangle/rectangletool.cpp)
target_sources(flameshot PRIVATE redo/redotool.h redo/redotool.cpp)
target_sources(flameshot PRIVATE save/savetool.h save/savetool.cpp)
target_sources(flameshot PRIVATE accept/accepttool.h accept/accepttool.cpp)
target_sources(flameshot PRIVATE invert/inverttool.h invert/inverttool.cpp)
target_sources(flameshot PRIVATE selection/selectiontool.h selection/selectiontool.cpp)
target_sources(
flameshot
PRIVATE text/textconfig.h
text/texttool.h
text/textwidget.h
text/textconfig.cpp
text/texttool.cpp
text/textwidget.cpp)
target_sources(flameshot PRIVATE undo/undotool.h undo/undotool.cpp)
target_sources(
flameshot
PRIVATE abstractactiontool.cpp
abstractpathtool.cpp
abstracttwopointtool.cpp
capturecontext.cpp
toolfactory.cpp
abstractactiontool.h
abstractpathtool.h
abstracttwopointtool.h
capturetool.h
toolfactory.h)