This commit is contained in:
Grace Yoder 2026-03-19 20:44:23 +00:00
commit e0cd2f721c
3 changed files with 27 additions and 0 deletions

8
CMakeLists.txt Normal file
View file

@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 3.10)
project(HelloCppWorld CXX)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED True)
add_executable(hello src/main.cpp)