CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4

Thread: boost linking

Threaded View

  1. #4
    Join Date
    Apr 1999
    Posts
    27,449

    Re: boost linking

    Quote Originally Posted by c94wjpn View Post
    no, actually I think I need to look up boost BOOST_ALL_NO_LIB option.
    Well you asked how a library can be linked without specifying it in the project settings, and
    Code:
    #pragma comment (lib,"whatever.lib")
    is how it's done with the Visual Studio C++ compiler. All that BOOST_??? stuff does is more than likely place #ifdef/#endif around these set of #pragmas.

    Regards,

    Paul McKenzie
    Last edited by Paul McKenzie; April 5th, 2012 at 01:09 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured