Skip to content

Instantly share code, notes, and snippets.

@rpavlik
Created September 12, 2017 17:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rpavlik/adb9c9859215c71c37f1cd8bc35139e8 to your computer and use it in GitHub Desktop.
Save rpavlik/adb9c9859215c71c37f1cd8bc35139e8 to your computer and use it in GitHub Desktop.
Requesting C++14 and C11
cmake_minimum_required(VERSION 3.1.0)
project(my-project)
set(CMAKE_C_STANDARD 11)
set(CMAKE_C_STANDARD_REQUIRED ON)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment