4 lines
95 B
CMake
4 lines
95 B
CMake
cmake_minimum_required(VERSION 3.15)
|
|
project(cpp_first CXX)
|
|
add_executable(cpp_first main.cpp)
|