Compiling and configuring Boost C++ libraries for Visual Studio 2010
This video demonstrates how to compile the Boost C++ Libraries for VC++ 10.0. It will then show how to configure Visual Studio 2010, making it ready for use in your own C++ projects. You can download the source code at: toefel.nl For a good detailed description, you can also check out this page: stackoverflow.com I hope it helps, Christophe Hesters ( www.toefel.nl )
January 23, 2012 | Filed Under Visual Basic Tutorials
Comments
25 Responses to “Compiling and configuring Boost C++ libraries for Visual Studio 2010”
Leave a Reply
You must be logged in to post a comment.
@toefel18 this is what i did i went ti to the QT project settings Qt modules and disabled the opengl option but i still got the error, but i saw something about this, u might check this and see if its related the qt center
@toefel18 this is the link qtcentre.org/threads/36056-Qt-4.7.1-libgles_cm.lib-for-OpenGL-ES-can-t-be-opened
any suggestion for what i should do next
@toefel18 from this page (code.google.com/p/visual-control/wiki/Compiling) step no. 6, 7, 8 and 9 which include and library paths I have to show.
@danmalikin I have no Idea, sorry.
@toefel18 Alright, tnx, i will let u know if i solve it
@chotansign The same library and include paths that are shown in the video tutorials for OpenCV, Tbb, and Boost! Step trough the last parts of the tutorial for an explanation of how to configure your Visual Studio projects. (Do the same steps as I do in the solutions in the tutorials.)
@danmalikin i solve the libgles problem by going to the project properties and removing the the libgles from add dependencies bt im having this error now fatal error LNK1104: cannot open file ‘cxcore210d.lib, despite adding this directories to the openCV property sheet directory \OpenCV-2.1.0\build\lib and \OpenCV-2.1.0\include\opencv for the library is their something that im doing wrong ?
i’m not getting the libgles error but im getting this error now, what shoud i do
LINK : fatal error LNK1104: cannot open file ‘cv210d.lib’
I have solve the previous problem but im having this error now if you can help me please
>eigenfacerecognizer.obj : error LNK2019: unresolved external symbol _cvEigenDecomposite referenced in function “public: virtual bool __thiscall cognition::EigenfaceRecognizer::train(void)” (?train@EigenfaceRecognizer@cognition@@UAE_NXZ)
@danmalikin make sure you add cvaux210d.lib to your configuration! (so propterties>linker>dependencies) and the cvaux210d.DLL needs to be in the same directory as your application or in your PATH variable
build is a success, however did not find the following dll in the bin tbb_debug.dll
thanx i have found the tbb dll everything works just fine, tnx for all the help really appreciate it
great vid helped me out big time. I tried using their auto-installer and couldn’t figure out what was wrong… but once i built it myself worked with no problems
Much easier just to use the installers provided at boostpro.com
Thank me? No thank you!
worked great, thanks.
Thank you very much. I originally used boostpro to get the libraries and was not able to link them. I followed your tutorial here to build them myself (very easy and clear, by the way) and everything worked fine.
Do you need to do all of this every time you create a new program using Boost?
@xDAZZE no, just once and you’re set for every program that uses boost
@toefel18 Thanks
I am getting the following error while building boost:
execnt.c(29) : fatal error C1083: Cannot open include file: ‘windows.h’: No such file or directory
@stooray1 are you building using the Visual Studio Command Prompt? this command prompt sets up your environment(include paths, library path’s, etc) and provides the headers you need. (you can find it in the start menu)
I got like roughly 10 long errors when typing the bjam command. Also, bootstrap mentions something about Boost.Build, not Boost.Jam for me. :S
thanks, worked :)