-
Notifications
You must be signed in to change notification settings - Fork 9
CMake
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)