Re: [boost] [Boost-commit] svn:boost r70044 - in trunk/tools/quickbook: . src

AMDG On 03/16/2011 05:13 PM, dnljms@gmail.com wrote:
+import os ; + project quickbook : requirements <toolset>gcc:<c++-template-depth>300 @@ -16,6 +18,11 @@ <toolset>darwin:<cflags>-g0 ;
+if [ os.name ] = NT +{ + lib shell32 ; +} +
This doesn't need to be declared conditionally.
exe quickbook : quickbook.cpp @@ -50,4 +57,5 @@ <toolset>msvc:<cxxflags>/wd4800 <toolset>msvc:<define>_CRT_SECURE_NO_DEPRECATE <toolset>msvc:<define>_SCL_SECURE_NO_DEPRECATE +<os>NT:<library>shell32 ;
Shouldn't this be using <target-os>windows, instead of <os>? In Christ, Steven Watanabe

On 17 March 2011 03:53, Steven Watanabe <watanabesj@gmail.com> wrote:
exe quickbook : quickbook.cpp @@ -50,4 +57,5 @@ <toolset>msvc:<cxxflags>/wd4800 <toolset>msvc:<define>_CRT_SECURE_NO_DEPRECATE <toolset>msvc:<define>_SCL_SECURE_NO_DEPRECATE +<os>NT:<library>shell32 ;
Shouldn't this be using <target-os>windows, instead of <os>?
Thanks for the corrections, I'll fix it soon. I think I just copied that from somewhere, so there might be other libraries that do the same thing. Daniel
participants (2)
-
Daniel James
-
Steven Watanabe