cmake_minimum_required(VERSION 3.15)
project(hellocmake LANGUAGES CXX)

add_executable(main main.cpp)

set(myvar "hello" CACHE STRING "this is the docstring.")
message("myvar is: ${myvar}")
