1# Copyright 2018 Mike Dev 2# Distributed under the Boost Software License, Version 1.0. 3# See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt 4 5cmake_minimum_required(VERSION 3.5) 6project(BoostVmd LANGUAGES) 7 8add_library(boost_vmd INTERFACE) 9add_library(Boost::vmd ALIAS boost_vmd) 10 11target_include_directories(boost_vmd INTERFACE include) 12 13target_link_libraries(boost_vmd 14 INTERFACE 15 Boost::preprocessor 16) 17