diff options
Diffstat (limited to 'src/platform/graph/CMakeLists.txt')
-rw-r--r-- | src/platform/graph/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/platform/graph/CMakeLists.txt b/src/platform/graph/CMakeLists.txt index da76d296..dac28370 100644 --- a/src/platform/graph/CMakeLists.txt +++ b/src/platform/graph/CMakeLists.txt @@ -1,12 +1,14 @@ set(CRU_PLATFORM_GRAPH_INCLUDE_DIR ${CRU_INCLUDE_DIR}/cru/platform/graph) add_library(cru_platform_graph INTERFACE) target_sources(cru_platform_graph INTERFACE + ${CRU_PLATFORM_GRAPH_INCLUDE_DIR}/base.hpp ${CRU_PLATFORM_GRAPH_INCLUDE_DIR}/brush.hpp ${CRU_PLATFORM_GRAPH_INCLUDE_DIR}/font.hpp ${CRU_PLATFORM_GRAPH_INCLUDE_DIR}/geometry.hpp - ${CRU_PLATFORM_GRAPH_INCLUDE_DIR}/graph_factory.hpp + ${CRU_PLATFORM_GRAPH_INCLUDE_DIR}/factory.hpp + ${CRU_PLATFORM_GRAPH_INCLUDE_DIR}/resource.hpp ${CRU_PLATFORM_GRAPH_INCLUDE_DIR}/painter.hpp ${CRU_PLATFORM_GRAPH_INCLUDE_DIR}/text_layout.hpp - ${CRU_PLATFORM_GRAPH_INCLUDE_DIR}/util/painter_util.hpp + ${CRU_PLATFORM_GRAPH_INCLUDE_DIR}/util/painter.hpp ) target_link_libraries(cru_platform_graph INTERFACE cru_platform_base) |