summaryrefslogtreecommitdiff
path: root/doc/examples/out-of-source-build/files/OutOfSourceProject/main/CMakeLists.txt
blob: 4176932967b5fb2b2579354e63df247f314be156 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

# 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)