Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/tools/build/v2/example/gettext/Jamfile @ 12

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

added boost

File size: 514 bytes
Line 
1
2# Declare a main target.
3exe main : main.cpp ;
4
5# Declare an action for updating translations
6# After changing main.cpp, invocation of
7#
8#   bjam update-russian
9#
10# will update translations in russian.po
11gettext.update update-russian : russian.po main ;
12
13# Compiled message catalog.
14gettext.catalog russian : russian.po ;
15
16# A stage rule which installs message catalog to the
17# location gettext expects.
18stage messages-russian : russian
19    : <location>messages/ru_RU.KOI8-R/LC_MESSAGES
20      <name>main
21    ;
22
Note: See TracBrowser for help on using the repository browser.