1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-07 16:47:36 +00:00
serenity/Applications/PixelPaint/CMakeLists.txt
BenJilks afd52e2576 PixelPaint: Tool properties panel
Each tool can have its own set of properties that can be modified
through a panel on the right side.

The tools I've added properties for are:

Pen:
	Thickness

Brush:
	Size
	Hardness

Spray:
	Thickness
	Density

Bucket:
	Threshold
2020-10-16 00:03:53 +02:00

26 lines
502 B
CMake

set(SOURCES
BrushTool.cpp
BucketTool.cpp
CreateNewLayerDialog.cpp
EllipseTool.cpp
EraseTool.cpp
Image.cpp
ImageEditor.cpp
Layer.cpp
LayerListWidget.cpp
LayerPropertiesWidget.cpp
LineTool.cpp
main.cpp
MoveTool.cpp
PaletteWidget.cpp
PenTool.cpp
PickerTool.cpp
RectangleTool.cpp
SprayTool.cpp
ToolboxWidget.cpp
ToolPropertiesWidget.cpp
Tool.cpp
)
serenity_bin(PixelPaint)
target_link_libraries(PixelPaint LibGUI LibGfx)