vote up 0 vote down star

Say I have the path to the headers and lib files of boost, in $BOOST_INLCUDE and $BOOST_LIB

how do I build a simple hello world?

thanks

flag

1 Answer

vote up 5 vote down

Add them with -I and -L parameters.

g++ helloworld.cpp -o helloworld -I"$BOOST_INLCUDE" -L"$BOOST_LIB" -lboost-whatever-lib-needed
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.