1# Copyright 2018, 2019 Peter Dimov 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...3.16) 6 7project(boost_timer_install_test LANGUAGES CXX) 8 9find_package(boost_timer REQUIRED) 10 11if(BOOST_RUNTIME_LINK STREQUAL "static") 12 set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>") 13endif() 14 15add_executable(main main.cpp) 16target_link_libraries(main Boost::timer) 17 18enable_testing() 19add_test(NAME main COMMAND main) 20 21add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure -C $<CONFIG>) 22