Add test/cmake_install_test, test/cmake_subdir_test

This commit is contained in:
Peter Dimov
2024-01-15 20:20:20 +02:00
parent 7a5386eeeb
commit 88428d350d
4 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Copyright 2018, 2019 Peter Dimov
# Distributed under the Boost Software License, Version 1.0.
# See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt
cmake_minimum_required(VERSION 3.5...3.16)
project(cmake_subdir_test LANGUAGES CXX)
set(BOOST_INCLUDE_LIBRARIES optional)
add_subdirectory(../../../.. boostorg/boost)
add_executable(main main.cpp)
target_link_libraries(main Boost::optional)
enable_testing()
add_test(main main)
add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure -C $<CONFIG>)

View File

@ -0,0 +1,13 @@
// Copyright 2024 Peter Dimov
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
#include <boost/optional/optional.hpp>
int main()
{
boost::optional<int> o1;
boost::optional<int> o2( 0 );
o1 = o2;
return *o1;
}