cmake_minimum_required(VERSION 3.24)
project(cppout)

file(GLOB SOURCE_FILES "*.cpp")

add_executable(${PROJECT_NAME} ${SOURCE_FILES})
