aboutsummaryrefslogtreecommitdiff
path: root/src/platform/graphics/CMakeLists.txt
blob: 5f841267ab9707346818abc895d3cd50e825306f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
set(CRU_PLATFORM_GRAPHICS_INCLUDE_DIR ${CRU_INCLUDE_DIR}/cru/platform/graphics)
add_library(cru_platform_graphics INTERFACE)
target_sources(cru_platform_graphics INTERFACE
	${CRU_PLATFORM_GRAPHICS_INCLUDE_DIR}/Base.hpp
	${CRU_PLATFORM_GRAPHICS_INCLUDE_DIR}/Brush.hpp
	${CRU_PLATFORM_GRAPHICS_INCLUDE_DIR}/Font.hpp
	${CRU_PLATFORM_GRAPHICS_INCLUDE_DIR}/Geometry.hpp
	${CRU_PLATFORM_GRAPHICS_INCLUDE_DIR}/Factory.hpp
	${CRU_PLATFORM_GRAPHICS_INCLUDE_DIR}/Resource.hpp
	${CRU_PLATFORM_GRAPHICS_INCLUDE_DIR}/Painter.hpp
	${CRU_PLATFORM_GRAPHICS_INCLUDE_DIR}/TextLayout.hpp
	${CRU_PLATFORM_GRAPHICS_INCLUDE_DIR}/util/Painter.hpp
)
target_link_libraries(cru_platform_graphics INTERFACE cru_platform_base)