home Forums # Technical Support Geting Fatal errors from nmake at 18% build Reply To: Geting Fatal errors from nmake at 18% build

#1832
Unknown
Member

Got it to compile over Visual studio 12 2013 community edition by using Cmake-gui
configurated as default and then tweaking a bit the sources

what did I tweak?

in imex\FLimporter/cpp there was a call for output range so I added range.str()
I also had errors saying that min and max were not members of std:: So I just included algorithm

#include <algorithm> (As far as I know… the min and max for std are defined there)

And Voilá it works