/build/boost-build/tools/message.jam

https://bitbucket.org/genericcontainer/goblin-camp/ · Unknown · 55 lines · 47 code · 8 blank · 0 comment · 0 complexity · 1ed1d7465533114b8ed20bb1a8b9c2bb MD5 · raw file

  1. # Copyright 2008 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. # Defines main target type 'message', that prints a message when built for the
  5. # first time.
  6. import project ;
  7. import "class" : new ;
  8. import targets ;
  9. import property-set ;
  10. class message-target-class : basic-target
  11. {
  12. rule __init__ ( name-and-dir : project : * )
  13. {
  14. basic-target.__init__ $(name-and-dir) : $(project) ;
  15. self.3 = $(3) ;
  16. self.4 = $(4) ;
  17. self.5 = $(5) ;
  18. self.6 = $(6) ;
  19. self.7 = $(7) ;
  20. self.8 = $(8) ;
  21. self.9 = $(9) ;
  22. self.built = ;
  23. }
  24. rule construct ( name : source-targets * : property-set )
  25. {
  26. if ! $(self.built)
  27. {
  28. for i in 3 4 5 6 7 8 9
  29. {
  30. if $(self.$(i))
  31. {
  32. ECHO $(self.$(i)) ;
  33. }
  34. }
  35. self.built = 1 ;
  36. }
  37. return [ property-set.empty ] ;
  38. }
  39. }
  40. rule message ( name : * )
  41. {
  42. local project = [ project.current ] ;
  43. targets.main-target-alternative
  44. [ new message-target-class $(name) : $(project)
  45. : $(2) : $(3) : $(4) : $(5) : $(6) : $(7) ] ;
  46. }
  47. IMPORT $(__name__) : message : : message ;