How do I get boost to work with vs.net 2005 ?
I downloaded the executable from sourceforge, but I'm at a loss how to get the libraries to be recognized by VS.NET. I googled but nothing that works turned up. I'm desperate to try and play with the boost libraries and am eager to get started with them. Can someone describe it step by step command by command? I'm on Win2k Pro. Thanks in advance. _________________________________________________________________ On the road to retirement? Check out MSN Life Events for advice on how to get there! http://lifeevents.msn.com/category.aspx?cid=Retirement
Open VS.NET
From the "Tools" menu, select "Options" In the tree to the left, open "Projects & Solutions" and select VC++ Directories From the drop down list labelled "Show directories for:" select "Include files" Add the boost root directory (wherever you decompressed the boost installation) to that list.
HTH Pablo
I downloaded the executable from sourceforge, but I'm at a loss how to get the libraries to be recognized by VS.NET. I googled but nothing that works turned up. I'm desperate to try and play with the boost libraries and am eager to get started with them. Can someone describe it step by step command by command?
I'm on Win2k Pro.
Thanks in advance.
It didn't work!
I followed the directions to the letter. Is it a bug with VS.NET 2005 beta?
Here's the message I got:
Cannot open include file: 'boost\smart_ptr.h': No such file or directory
Here is my code:
#include "stdafx.h"
#include "x.h"
#include
From: "Pablo Aguilar"
Reply-To: boost-users@lists.boost.org To: boost-users@lists.boost.org Subject: Re: [Boost-users] How do I get boost to work with vs.net 2005 ? Date: Fri, 24 Jun 2005 14:10:36 -0700 Open VS.NET
From the "Tools" menu, select "Options" In the tree to the left, open "Projects & Solutions" and select VC++ Directories From the drop down list labelled "Show directories for:" select "Include files" Add the boost root directory (wherever you decompressed the boost installation) to that list.
HTH
Pablo
I downloaded the executable from sourceforge, but I'm at a loss how to get the libraries to be recognized by VS.NET. I googled but nothing that works turned up. I'm desperate to try and play with the boost libraries and am eager to get started with them. Can someone describe it step by step command by command?
I'm on Win2k Pro.
Thanks in advance.
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
_________________________________________________________________ Is your PC infected? Get a FREE online computer virus scan from McAfee® Security. http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963
On 6/24/05, Mart marvin
It didn't work!
I followed the directions to the letter. Is it a bug with VS.NET 2005 beta? Here's the message I got:
Cannot open include file: 'boost\smart_ptr.h': No such file or directory
try boost/smart_ptr.hpp
Here is my code:
#include "stdafx.h" #include "x.h" #include
int main() { x& p = *new x; delete &p; return 0; }
Please help... I'm desperate to try Boost. Looked at the documentation and I'm drooling to play with it.
From: "Pablo Aguilar"
Reply-To: boost-users@lists.boost.org To: boost-users@lists.boost.org Subject: Re: [Boost-users] How do I get boost to work with vs.net 2005 ? Date: Fri, 24 Jun 2005 14:10:36 -0700 Open VS.NET
From the "Tools" menu, select "Options" In the tree to the left, open "Projects & Solutions" and select VC++ Directories From the drop down list labelled "Show directories for:" select "Include files" Add the boost root directory (wherever you decompressed the boost installation) to that list.
HTH
Pablo
I downloaded the executable from sourceforge, but I'm at a loss how to get the libraries to be recognized by VS.NET. I googled but nothing that works turned up. I'm desperate to try and play with the boost libraries and am eager to get started with them. Can someone describe it step by step command by command?
I'm on Win2k Pro.
Thanks in advance.
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
_________________________________________________________________ Is your PC infected? Get a FREE online computer virus scan from McAfee(r) Security. http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
-- Cory Nelson http://www.int64.org
From: Cory Nelson
Reply-To: boost-users@lists.boost.org To: boost-users@lists.boost.org Subject: Re: [Boost-users] How do I get boost to work with vs.net 2005 ? Date: Fri, 24 Jun 2005 15:26:17 -0700 On 6/24/05, Mart marvin
wrote: It didn't work!
I followed the directions to the letter. Is it a bug with VS.NET 2005 beta? Here's the message I got:
Cannot open include file: 'boost\smart_ptr.h': No such file or directory
try boost/smart_ptr.hpp
Now that's silly. When did ".h" stop being good enough!? Well it did compile so I can't complain too hard...but why change it to hpp? I can understand modern C++ has benefits over the older like that when memory allocation fails it throws a bad_alloc, but changing things like "h" to "hpp" is just changing for the sake of change. _________________________________________________________________ Dont just search. Find. Check out the new MSN Search! http://search.msn.click-url.com/go/onm00200636ave/direct/01/
Mart marvin wrote:
Now that's silly. When did ".h" stop being good enough!? Well it did compile so I can't complain too hard...but why change it to hpp? I can understand modern C++ has benefits over the older like that when memory allocation fails it throws a bad_alloc, but changing things like "h" to "hpp" is just changing for the sake of change.
Without looking at the content... How would you tell the difference between a C language header and C++ language header? I'm not trying to start some language or naming war... Just pointing out the obvious reasoning. And everyone is free to ignore this message ;-) -- -- Grafik - Don't Assume Anything -- Redshift Software, Inc. - http://redshift-software.com -- rrivera/acm.org - grafik/redshift-software.com -- 102708583/icq - grafikrobot/aim - Grafik/jabber.org
Rene Rivera
Mart marvin wrote:
Now that's silly. When did ".h" stop being good enough!? Well it did compile so I can't complain too hard...but why change it to hpp? I can understand modern C++ has benefits over the older like that when memory allocation fails it throws a bad_alloc, but changing things like "h" to "hpp" is just changing for the sake of change.
Without looking at the content... How would you tell the difference between a C language header and C++ language header?
Can your search tools tell? being able to wildcard with *.[ch]pp (or just *pp as I normally do) can be a real advantage when you want to search through the C++ source in your project. That was the rationale that Nico Jossuttis gave when Boost was started in 1998 and we have stuck with it ever since. Just so you know, this isn't a Boost thing. The convention is in common use in the C++ community. -- Dave Abrahams Boost Consulting www.boost-consulting.com
participants (5)
-
Cory Nelson
-
David Abrahams
-
Mart marvin
-
Pablo Aguilar
-
Rene Rivera