]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/tools/build/example/variant/jamfile.jam
bump version to 18.2.2-pve1
[ceph.git] / ceph / src / boost / tools / build / example / variant / jamfile.jam
CommitLineData
7c673cae
FG
1# Copyright 2004 Vladimir Prus
2# Distributed under the Boost Software License, Version 1.0.
1e59de90 3# (See accompanying file LICENSE.txt or https://www.bfgroup.xyz/b2/LICENSE.txt)
7c673cae 4
b32b8144
FG
5#[jamfile
6#<< By default, build the project with the two variants we have defined in jamroot.jam.
7c673cae
FG
7project : default-build crazy super_release ;
8
b32b8144 9#<< We build an `a` exe target that links a built library. The library builds with the propagated properties of the exe.
7c673cae 10exe a : a.cpp libs//l ;
b32b8144 11#]