From 0464e8e5d71196f176a43088fc72beb4e8ff3b20 Mon Sep 17 00:00:00 2001 From: Robert Hauck Date: Wed, 11 Feb 2015 13:57:48 +0100 Subject: [PATCH] missing include --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3834f2a1..ccca4c4c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,6 +7,9 @@ cmake_minimum_required(VERSION 2.8) #find dependencies if(UNIX) find_package(Freetype) + if (FREETYPE_FOUND) + include_directories( ${FREETYPE_INCLUDE_DIRS}) + endif() endif() option(NANA_ENABLE_PNG "Enable the use of PNG" ON)