aseprite/src/gfx/CMakeLists.txt
David Capello 239ac42378 Add Hue/Saturation filter (fix #1186)
Added new gfx::Hsl class to handle HSL color model(related to #707 and #1102)
2017-05-24 19:07:10 -03:00

14 lines
200 B
CMake

# Aseprite
# Copyright (C) 2001-2017 David Capello
add_library(gfx-lib
hsl.cpp
hsv.cpp
packing_rects.cpp
region.cpp
rgb.cpp)
target_link_libraries(gfx-lib
laf-base
${PIXMAN_LIBRARY})