mirror of
https://github.com/boostorg/build.git
synced 2026-07-21 13:13:39 +00:00
50f853546c
This adds a "version" type attribute to features that follow semver semantics. The implementation follows the semver rules for matching property sets and requirements, and for matching target alternatives. The implementation relies on the bfgroup/versioned library for the semver parsing and checking.
15 lines
297 B
C++
15 lines
297 B
C++
// Copyright (c) 2003 Vladimir Prus
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See
|
|
// accompanying file LICENSE.txt or copy at
|
|
// https://www.bfgroup.xyz/b2/LICENSE.txt)
|
|
|
|
// tag::source[]
|
|
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
std::cout << "Hello!\n";
|
|
}
|
|
// end::source[]
|