Created
December 10, 2019 22:15
-
-
Save svraghavan/e9831c3c79c70ee14b150d106e045bbe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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