blob: 4176932967b5fb2b2579354e63df247f314be156 [file] [log] [blame]
# Set the minimum version of CMake that can be used
# To find the cmake version run
# $ cmake --version
cmake_minimum_required(VERSION 2.8)
# Set the project name
project (hello_buildstreams C)
# Add an executable
add_executable(hello_buildstream main.c)
install(TARGETS hello_buildstream DESTINATION /bin)