CMakeLists.txt 448 B

12345678910111213141516
  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. cmake_minimum_required(VERSION 3.5)
  5. project(BoostVmd LANGUAGES)
  6. add_library(boost_vmd INTERFACE)
  7. add_library(Boost::vmd ALIAS boost_vmd)
  8. target_include_directories(boost_vmd INTERFACE include)
  9. target_link_libraries(boost_vmd
  10. INTERFACE
  11. Boost::preprocessor
  12. )