Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/tools/build/v2/example/gettext/Jamfile @ 29

Last change on this file since 29 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

File size: 701 bytes
Line 
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
Note: See TracBrowser for help on using the repository browser.