Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ChristosT/1899aa28ded418c82a3adb1a2f0031c2 to your computer and use it in GitHub Desktop.

Select an option

Save ChristosT/1899aa28ded418c82a3adb1a2f0031c2 to your computer and use it in GitHub Desktop.
Support CMAKE_CXX_STANDARD in older cmake versions
if (CMAKE_VERSION VERSION_LESS "3.1")
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
else ()
set (CMAKE_CXX_STANDARD 11)
endif ()
#source https://stackoverflow.com/a/31010221
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment