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