Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ if(FG_ENABLE_HUNTER)
else()
find_package(glbinding REQUIRED)
find_package(glm REQUIRED)
find_package(freetype REQUIRED)

# freetype.cmake builds freetype on windows
# and calls find_package(Freetype) on other platforms
include(freetype)

find_package(Boost REQUIRED)
endif()

Expand Down Expand Up @@ -174,4 +178,5 @@ install(DIRECTORY examples/ #NOTE The slash at the end is important
DESTINATION ${FG_INSTALL_EXAMPLE_DIR}
COMPONENT examples)

include(CPackConfig)
include(CPackConfig)

Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# FindFreeType.cmake
# Author: Pradeep Garigipati <[email protected]>
#
# Heavy work is done by FindFreetype.cmake that comes along with
Expand Down