cmake_minimum_required(VERSION 3.16)

project(my-first-brew)

add_executable(my-first-brew main.c)

install(TARGETS my-first-brew DESTINATION bin)
