jamroot.jam 552 B

123456789101112
  1. # Copyright 2004 Vladimir Prus
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # (See accompanying file LICENSE.txt or https://www.bfgroup.xyz/b2/LICENSE.txt)
  4. #[jamroot
  5. #<< Define a build variant which is just combination of four properties.
  6. variant crazy : <optimization>speed <inlining>off
  7. <debug-symbols>on <profiling>on ;
  8. #<< Define a built variant inherited from 'release'. It defines one new property and gets all properties from the parent `release` variant.
  9. variant super_release : release : <define>USE_ASM ;
  10. #]