1#
2# Copyright 2018, Data61, CSIRO (ABN 41 687 119 230)
3#
4# SPDX-License-Identifier: BSD-2-Clause
5#
6
7cmake_minimum_required(VERSION 3.7.2)
8
9project(hello C)
10
11add_executable(hello hello.c)
12
13install(TARGETS hello RUNTIME DESTINATION bin)
14