Try to enable locale/facet support for metrowerks.

[SVN r22855]
This commit is contained in:
Vladimir Prus
2004-05-18 06:38:17 +00:00
parent 961444b4b3
commit d1b80f89b3
2 changed files with 4 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ lib boost_program_options
: # build requirements
[ common-names ] # magic for install and auto-link features
<include>$(BOOST_ROOT) <sysinclude>$(BOOST_ROOT)
std::facet-support std::locale-support
: debug release # build variants
;
@@ -20,6 +21,7 @@ dll boost_program_options
<define>BOOST_ALL_DYN_LINK=1 # tell source we're building dll's
<runtime-link>dynamic # build only for dynamic runtimes
<include>$(BOOST_ROOT) <sysinclude>$(BOOST_ROOT)
std::facet-support std::locale-support
: debug release # build variants
;

View File

@@ -8,7 +8,8 @@ rule program-options-test ( name )
return [
run $(name).cpp <lib>../build/boost_program_options
<lib>../../test/build/boost_test_exec_monitor : :
: <include>$(BOOST_ROOT) ]
: <include>$(BOOST_ROOT)
std::facet-support std::locale-support ]
;
}