The right way to include Boost library.



 DEVELOP > c-Plus-Plus > The right way to include Boost library.

LINK TO THIS PAGE  


rating :  0   |  0


  Page 1 of 1

1

 
Topic: DEVELOP > c-Plus-Plus
User: ""
Date: 07 Dec 2007 04:25:15 AM
Object: The right way to include Boost library.
Hi.
I just downloaded boost library from boost.org then build and I don't
know what does binary precompiled means.
Well, I have installed it and I using bloodshed Dev-Cpp compiler.
<b> Then, I opened the boost_1_34_1 folder and then I copy the boost.
</b>
<b>The boost library I paste it at C:\Dev-Cpp\include\boost</b>
Then I try some of code that required coding and then it just works!
example:
#include <boost/numeric/ublas/vector.hpp>
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/numeric/ublas/io.hpp>
using namespace boost::numeric::ublas;
/* "y = Ax" example */
int main ()
{
vector<double> x (2);
x(0) = 1; x(1) = 2;
matrix<double> A(2,2);
A(0,0) = 0; A(0,1) = 1;
A(1,0) = 2; A(1,1) = 3;
vector<double> y = prod(A, x);
std::cout << y << std::endl;
system("PAUSE");
return 0;
}
well, my question is, is what am I doing is right?
or is there any better solution?
and I don't really know the gcc+ %% .. -- // o- l- thing lol ^_^
I use windows home, bloodshed devcpp.
.

User: "Victor Bazarov"

Title: Re: The right way to include Boost library. 07 Dec 2007 08:35:48 AM
wrote:

I just downloaded boost library from boost.org then build and I don't
know what does binary precompiled means.

Well, I have installed it and [..]

well, my question is, is what am I doing is right?
or is there any better solution?
and I don't really know the gcc+ %% .. -- // o- l- thing lol ^_^

I use windows home, bloodshed devcpp.

Did you not know that Boost has its own online discussion forums?
Installation of products (however closely related to C++) is OT here.
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
.


  Page 1 of 1

1

 


Related Articles
 

NEWER

pg.1232     pg.940     pg.716     pg.544     pg.412     pg.311     pg.234     pg.175     pg.130     pg.96     pg.70     pg.50     pg.35     pg.24     pg.16     pg.10     pg.6     pg.3     pg.1

OLDER