jamfile.jam 694 B

1234567891011121314151617181920212223242526
  1. # Copyright 2003, 2006 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. # Declare a main target.
  5. exe main : main.cpp ;
  6. # Declare an action for updating translations
  7. # After changing main.cpp, invocation of
  8. #
  9. # bjam update-russian
  10. #
  11. # will update translations in russian.po
  12. gettext.update update-russian : russian.po main ;
  13. # Compiled message catalog.
  14. gettext.catalog russian : russian.po ;
  15. # A stage rule which installs message catalog to the
  16. # location gettext expects.
  17. stage messages-russian : russian
  18. : <location>messages/ru_RU.KOI8-R/LC_MESSAGES
  19. <name>main.mo
  20. ;