home › Forums › # Technical Support › Geting Fatal errors from nmake at 18% build › Reply To: Geting Fatal errors from nmake at 18% build
May 28, 2015 at 18:40
#1832
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