Skip to content
Mubashir Rasool Razvi edited this page Sep 12, 2020 · 4 revisions

Create CMakeLists.txt file in root of project and paste the code below.

cmake_minimum_required(VERSION 3.13)
project(competitive_programming)
set(CMAKE_CXX_STANDARD 17)
add_executable(competitive_programming main.cpp)
Clone this wiki locally