Top "Boost" questions

Boost is a large collection of high-quality libraries intended for use in C++. Boost is free, and is often considered a "second standard library".

How to install Boost on Ubuntu

I'm on Ubuntu, and I want to install Boost. I tried with sudo apt-get install boost But there was no …

ubuntu boost
How to use Boost in Visual Studio 2010

What is a good step by step explanation on how to use the Boost library in an empty project in …

c++ visual-studio-2010 boost
How do you install Boost on MacOS?

How do you install Boost on MacOS? Right now I can't find bjam for the Mac.

c++ macos boost
Get path of executable

I know this question has been asked before but I still haven't seen a satisfactory answer, or a definitive "no, …

c++ boost executable
fatal error LNK1104: cannot open file 'libboost_system-vc110-mt-gd-1_51.lib'

Seem I can't get this to work. I made a simple console application (which depend on websocket++ library) which need …

c++ boost
Cmake doesn't find Boost

I'm trying to configure a project using CMake, but it fails to find Boost libraries even though they are in …

boost cmake
Example to use shared_ptr?

Hi I asked a question today about How to insert different types of objects in the same vector array and …

c++ boost vector shared-ptr smart-pointers
c++ boost split string

I'm using the boost::split method to split a string as this: I first make sure to include the correct …

c++ boost split
Calculate mean and standard deviation from a vector of samples in C++ using Boost

Is there a way to calculate mean and standard deviation for a vector containing samples using Boost? Or do I …

c++ algorithm boost statistics mean
How do you add Boost libraries in CMakeLists.txt?

I need to add Boost libraries into my CMakeLists.txt. How do you do it or how do you add …

boost cmake