1# Copyright 2018 Mike Dev 2# Copyright 2018 Peter Dimov 3# Distributed under the Boost Software License, Version 1.0. 4# See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt 5 6cmake_minimum_required( VERSION 3.1 ) 7 8project( boostdep LANGUAGES CXX ) 9 10add_executable( boostdep src/boostdep.cpp ) 11 12find_package( Boost COMPONENTS filesystem REQUIRED ) 13target_link_libraries( boostdep Boost::filesystem ) 14 15install( TARGETS boostdep RUNTIME DESTINATION bin ) 16