From dfa1288aa50fc1b5cffa05fdc2a6a20aebeaa743 Mon Sep 17 00:00:00 2001 From: end Date: Tue, 27 Sep 2016 19:42:42 +0200 Subject: [PATCH] * fixed CMakeLists, now using the glm submodule --- game/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/game/CMakeLists.txt b/game/CMakeLists.txt index c157538..35f1f0a 100644 --- a/game/CMakeLists.txt +++ b/game/CMakeLists.txt @@ -32,6 +32,7 @@ set(GAME_HEADERS include_directories(${CMAKE_CURRENT_BINARY_DIR}) include_directories(${CMAKE_CURRENT_SOURCE_DIR}) include_directories(${OPENGL_INCLUDE_DIR}) +include_directories(${CMAKE_SOURCE_DIR}/libs/glm/) add_executable(game ${GAME_SRC} ${GAME_HEADERS}) setup_target(game)