home Forums # Technical Support Compiling error with visual studio 2013 (platform toolset v120) Reply To: Compiling error with visual studio 2013 (platform toolset v120)

#2016
Unknown
Member

i can generate project files with this command :
cmake . -G “Visual Studio 12 2013”

I can compile if i replace std::max by std::fmax and if i replace this line in FclImporter.cpp:
ex << “[syntax error] expected property of type ‘start .. end’, ”
<< “but found <” << range << “> in line: ” << line;
by this:
ex << “[syntax error] expected property of type ‘start .. end’, ”
<< “but found <” << range.str() << “> in line: ” << line;