From 74660df49fa3fe2ffdde1ce8acbc298624c9b71a Mon Sep 17 00:00:00 2001 From: bjorn Date: Sun, 19 Feb 2017 13:00:48 -0800 Subject: [PATCH] Fix FreeType Unix CMake; --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e36f33b0..138237b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -97,7 +97,7 @@ if (WIN32) include_directories(deps/freetype/include) set(LOVR_FREETYPE freetype) else() - pkg_search_module(FREETYPE REQUIRED freetype) + pkg_search_module(FREETYPE REQUIRED freetype2) include_directories(${FREETYPE_INCLUDE_DIRS}) set(LOVR_FREETYPE ${FREETYPE_LIBRARIES}) endif()