C++11 on CUDA project in visual studio 2013

Hello. I want to use the random.h for random number generation but I don’t know how to enable c++11 in a CUDA project (CUDA 7.5) in visual studio 2013. Is it possible to enable it? If so, how?

Thank you in advance

The visual studio environmnent and the CUDA 7.5 component within it should already be enabled for C++11. Unlike linux, there is no setting for c++11 and it’s not necessary to add -std=c++11 or the like anywhere.

I just did a quick test and had no trouble building a CUDA project in VS2013 with:

#include <random>

added to one of the files.