minimally working cmake file

    
# Minimum required version of CMake
cmake_minimum_required(VERSION 3.10)

project(project_name)

add_executable(${PROJECT_NAME} main.cpp)
    

edit this page