• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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#
5# NOTE: This does NOT run the unit tests for Boost.Vmd.
6#       It only tests, if the CMakeLists.txt file in it's root works as expected
7
8cmake_minimum_required( VERSION 3.5 )
9
10project( BoostVmdCMakeSelfTest )
11
12add_subdirectory( ../../../preprocessor ${CMAKE_CURRENT_BINARY_DIR}/libs/preprocessor )
13add_subdirectory( ../.. ${CMAKE_CURRENT_BINARY_DIR}/libs/boost_vmd )
14
15add_executable( boost_vmd_cmake_self_test main.cpp )
16target_link_libraries( boost_vmd_cmake_self_test Boost::vmd )
17
18