Jamfile.v2 497 B

123456789101112131415161718
  1. # (C) Copyright 2012: Eric Niebler
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. # Generates preprocessed files with wave.
  5. project : requirements <link>static <variant>release ;
  6. actions wave
  7. {
  8. $(>[2]) -o- -DBOOST_PROTO_MAX_ARITY=10 --config-file wave.cfg $(>[1])
  9. }
  10. W = /boost/libs/wave/tool//wave ;
  11. make preprocess_proto
  12. : preprocess_proto.cpp $(W) : wave : <dependency>wave.cfg
  13. ;