From a6adee185023eef6806a9f8394fe97f00afc15e7 Mon Sep 17 00:00:00 2001 From: Faerbit Date: Mon, 20 Oct 2014 17:58:14 +0200 Subject: [PATCH] Forgot two paths. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f964e08..3e6b7de 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -51,7 +51,7 @@ ADD_DEFINITIONS(-DNO_SPACE_NAVIGATOR_SUPPORT) # # Lets the binary get written to a shared folder (which can be ignored by git). # Will also set the run directory for QTCreator: -set(dir ${CMAKE_CURRENT_SOURCE_DIR}/../binaries) +set(dir ${CMAKE_CURRENT_SOURCE_DIR}/binaries) set(EXECUTABLE_OUTPUT_PATH ${dir} CACHE PATH "Build directory" FORCE) # source and header files @@ -91,7 +91,7 @@ FILE(GLOB_RECURSE HEADER_FILES_GLFW "${CMAKE_SOURCE_DIR}/extern/glfw/include/*.h INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/extern/glfw/include) SET(HEADER_FILES ${HEADER_FILES} ${HEADER_FILES_GLFW}) -add_subdirectory(extern/glfw ${CMAKE_SOURCE_DIR}/../extern/glfw) +add_subdirectory(extern/glfw ${CMAKE_SOURCE_DIR}/extern/glfw) SET(LIBRARIES glfw ${GLFW_LIBRARIES})