I have a Visual Studio project that contains files with managed code and files with unmanaged code. The project has the CLR support, but when I add a file where I do not need .NET I simply turn off the /crl option with a right-click on the file:
I added a class that has to contain unmanaged code and use std::mutex.
// Foo.h
class Foo
{
std::mutex m;
}
I got the following error after compiling:
error C1189: #error : is not supported when compiling with /clr or /clr:pure.
The problem is that I do not have the option to turn off the clr for header files (.h), since this is the window when i right-click on a .h file:
How can I fix this problem?