• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
5#[jamfile
6#<< By default, build the project with the two variants we have defined in jamroot.jam.
7project : default-build crazy super_release ;
8
9#<< We build an `a` exe target that links a built library. The library builds with the propagated properties of the exe.
10exe a : a.cpp libs//l ;
11#]