cmake_minimum_required(VERSION 3.15) project(Hello DESCRIPTION "Hello World" LANGUAGES C ) add_executable(hello src/main.c) install(TARGETS hello)