2
0
mirror of https://github.com/boostorg/cmake.git synced 2026-01-19 16:12:15 +00:00
Files
cmake/test/boost_test/run_multi_2.cpp
Alexander Grund fc3d0db273 Add tests for multi-source case
Verify that a test case with multiple sources is used and unsupported
B2 specifics are ignored or skipped.
2023-01-02 16:59:50 +01:00

12 lines
248 B
C++

// Copyright 2023 Alexander Grund
// 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
//Maybe in a header:
int g();
int main()
{
return g();
}