home › Forums › # Technical Support › Compiling error with visual studio 2013 (platform toolset v120) › Reply To: Compiling error with visual studio 2013 (platform toolset v120)
December 26, 2015 at 07:22
#2016
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;