Browse Source

Updated spelling issues and set c++ standard to 11 form 14

merge-requests/365/head
oyvang 11 years ago
parent
commit
e2414e0e16
  1. 12
      juci/CMakeLists.txt

12
juci/CMakeLists.txt

@ -3,7 +3,7 @@ set(project_name juci)
project (${project_name}) 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) INCLUDE(FindPkgConfig)
@ -18,9 +18,9 @@ if(${PYTHONLIBS_FOUND})
message("Python libraries found. Continuing") message("Python libraries found. Continuing")
else() else()
message("Please install python libraries. The libraries where not found.") message("Please install python libraries. The libraries where not found.")
message("Boost include dirs: ${PYTHON_INCLUDE_DIRS}") message("Python include dirs: ${PYTHON_INCLUDE_DIRS}")
message("Boost link dirs ${PYTHON_LIBRARIES}") message("Python link dirs ${PYTHON_LIBRARIES}")
message(FATAL_ERROR "The boost libraries are required. Quiting.") message(FATAL_ERROR "The python libraries are required. Quitting.")
endif() endif()
#### Finding boost, the variables below is set ##### #### Finding boost, the variables below is set #####
@ -38,7 +38,7 @@ else()
message("Boost library dirs: ${Boost_LIBRARY_DIRS}") message("Boost library dirs: ${Boost_LIBRARY_DIRS}")
message("Boost include dirs: ${Boost_INCLUDE_DIRS}") message("Boost include dirs: ${Boost_INCLUDE_DIRS}")
message("Boost link dirs ${Boost_LIBRARIES}") 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() endif()
#### Finding gtkmm, the variables below is set ##### #### Finding gtkmm, the variables below is set #####
@ -56,7 +56,7 @@ else()
message("Gtkmm library dirs ${GTKMM_LIBRARY_DIRS}") message("Gtkmm library dirs ${GTKMM_LIBRARY_DIRS}")
message("Gtkmm include dirs ${GTKMM_INCLUDE_DIRS}") message("Gtkmm include dirs ${GTKMM_INCLUDE_DIRS}")
message("Gtkmm link dirs ${GTKMM_LIBRARIES}") 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() endif()

Loading…
Cancel
Save