]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/tools/build/example/variant/jamfile.jam
update sources to v12.2.3
[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.
3# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
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#]