cmake_minimum_required(VERSION 3.22)
project(MyProject VERSION 1.0.0 LANGUAGES C CXX)
set(CMAKE_EXPORT_COMPILE_COMMANDS true)
add_executable(
helloworld-cpp-cmake
src/main.cpp
)
install(TARGETS helloworld-cpp-cmake)