summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/example/cmake_integration/CMakeLists.txt
blob: 000d03dd8a10f1f2a911a28ee50d6da0c57d1609 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Copyright Louis Dionne 2013-2017
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)

# [snip]
cmake_minimum_required(VERSION 3.0)
project(external CXX)

find_package(Hana REQUIRED)
add_executable(external main.cpp)
target_link_libraries(external hana)
# [snip]