8 lines
147 B
CMake
8 lines
147 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(my-first-brew)
|
|
|
|
add_executable(my-first-brew main.c)
|
|
|
|
install(TARGETS my-first-brew DESTINATION bin)
|