Commit 81100792 authored by Nick Sharp's avatar Nick Sharp
Browse files

Recommend installing freetype

parent 1ee96462
...@@ -161,8 +161,7 @@ endif(WIN32) ...@@ -161,8 +161,7 @@ endif(WIN32)
# Required packages # Required packages
find_package(OpenGL REQUIRED) find_package(OpenGL REQUIRED)
if(NOT WIN32) if(NOT WIN32)
#find_package(Freetype REQUIRED) find_package(Freetype REQUIRED)
add_subdirectory("${CMU462_SOURCE_DIR}/deps/freetype")
endif() endif()
# Use pkg-config for GLEW & GLFW if available # Use pkg-config for GLEW & GLFW if available
......
...@@ -146,9 +146,9 @@ endif(WIN32) ...@@ -146,9 +146,9 @@ endif(WIN32)
# Required packages # Required packages
find_package(OpenGL REQUIRED) find_package(OpenGL REQUIRED)
find_package(Threads REQUIRED) find_package(Threads REQUIRED)
#if (NOT WIN32) if (NOT WIN32)
# find_package(Freetype REQUIRED) find_package(Freetype REQUIRED)
#endif () endif ()
# CMU462 # CMU462
if(BUILD_LIBCMU462) if(BUILD_LIBCMU462)
......
...@@ -20,7 +20,9 @@ In order to ease the process of running on different platforms, we will be using ...@@ -20,7 +20,9 @@ In order to ease the process of running on different platforms, we will be using
#### OS X/Linux Build Instructions #### OS X/Linux Build Instructions
If you are working on OS X and do not have CMake installed, we recommend installing it through [Homebrew](http://brew.sh/): `$ brew install cmake`. If you are working on Linux, you should be able to install dependencies with your system's package manager as needed. If you are working on OS X and do not have CMake installed, we recommend installing it through [Homebrew](http://brew.sh/): `$ brew install cmake`. You may also need the freetype package `$ brew install freetype`.
If you are working on Linux, you should be able to install dependencies with your system's package manager as needed (you may need cmake and freetype, and possibly others).
To build your code for this assignment: To build your code for this assignment:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment