From e2414e0e164105b8e6d1c416851b2cfc232464d6 Mon Sep 17 00:00:00 2001 From: oyvang Date: Mon, 9 Feb 2015 11:31:41 +0100 Subject: [PATCH] Updated spelling issues and set c++ standard to 11 form 14 --- juci/CMakeLists.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/juci/CMakeLists.txt b/juci/CMakeLists.txt index 3e4cf3b..17febd9 100644 --- a/juci/CMakeLists.txt +++ b/juci/CMakeLists.txt @@ -3,7 +3,7 @@ set(project_name juci) project (${project_name}) -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++14") +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") INCLUDE(FindPkgConfig) @@ -18,9 +18,9 @@ if(${PYTHONLIBS_FOUND}) message("Python libraries found. Continuing") else() message("Please install python libraries. The libraries where not found.") - message("Boost include dirs: ${PYTHON_INCLUDE_DIRS}") - message("Boost link dirs ${PYTHON_LIBRARIES}") - message(FATAL_ERROR "The boost libraries are required. Quiting.") + message("Python include dirs: ${PYTHON_INCLUDE_DIRS}") + message("Python link dirs ${PYTHON_LIBRARIES}") + message(FATAL_ERROR "The python libraries are required. Quitting.") endif() #### Finding boost, the variables below is set ##### @@ -38,7 +38,7 @@ else() message("Boost library dirs: ${Boost_LIBRARY_DIRS}") message("Boost include dirs: ${Boost_INCLUDE_DIRS}") message("Boost link dirs ${Boost_LIBRARIES}") - message(FATAL_ERROR "The boost libraries are required. Quiting.") + message(FATAL_ERROR "The boost libraries are required. Quitting.") endif() #### Finding gtkmm, the variables below is set ##### @@ -56,7 +56,7 @@ else() message("Gtkmm library dirs ${GTKMM_LIBRARY_DIRS}") message("Gtkmm include dirs ${GTKMM_INCLUDE_DIRS}") message("Gtkmm link dirs ${GTKMM_LIBRARIES}") - message(FATAL_ERROR "The gtkmm libraries are required. Quiting.") + message(FATAL_ERROR "The gtkmm libraries are required. Quitting.") endif()