wwwacc Posted March 14, 2015 Posted March 14, 2015 When evaluating unigine 1 and 2, I use the nmake command to make unigine c++ samples and then run the result application, and always get the same error like "bad version".What's wrong with me ?
silent Posted March 14, 2015 Posted March 14, 2015 You need to add double parameter to your nmake command (double=1) since you are using Sim version. By default float binary will be generated which is uncompatible with double precision libs (Bad version). If you are using our bat files for nmake <SDK>/externs/bin/make_x86|x64.bat full command line to build any C++ sample (debug + double) would be: cd <sample_dir> && make_x64 double=1 debug=1 Thanks! How to submit a good bug report --- FTP server for test scenes and user uploads: ftp://files.unigine.com user: upload password: 6xYkd6vLYWjpW6SN
Recommended Posts