cmake_minimum_required(VERSION 3.10)
project(hello-cpp)

add_executable(hello-cpp main.cpp)

install(TARGETS hello-cpp)
