# Copyright 2019-2020 Collabora Ltd.
# Copyright 2020 Simon McVittie
# SPDX-License-Identifier: Apache-2.0
# (see "Apache" in debian/copyright)

cmake_minimum_required(VERSION 3.13)
project(Hello)

find_package(roaring REQUIRED)

add_executable(hello hello.c)
target_link_libraries(hello roaring::roaring)
