Skip to content

Instantly share code, notes, and snippets.

@svraghavan
Created December 10, 2019 22:15
Show Gist options
  • Select an option

  • Save svraghavan/e9831c3c79c70ee14b150d106e045bbe to your computer and use it in GitHub Desktop.

Select an option

Save svraghavan/e9831c3c79c70ee14b150d106e045bbe to your computer and use it in GitHub Desktop.
cmake_minimum_required(VERSION 3.15)
project(LearnCpp)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++1z -Wall -Wextra -Werror -pedantic-errors -Wconversion -Wsign-conversion")
add_executable(LearnCpp bitstring.cpp)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment