In the file include/stlab/concurrency/config.hpp we find some #warning preprocessor commands, which are unknown in MS visual studio and trigger a compilation error.
You may want to use something like
#ifdef _MSC_VER
# pragma NOTE(my warning here)
#else
# warning(my warning here)
#endif
instead.