Jump to content

[SOLVED] UNIGINE windows batch build fails


photo

Recommended Posts

Posted

Problem

 

Subdirectory physics\solvers is missing in utils\VCProj\unigine.py. Also SPU solver version has to be excluded from PC build.

 

include_path = string.replace('''
....
....
physics/collider;
physics/physicals;
physics/solvers;     # missing subdirectory
....
....
exclude = string.replace('''
....
.\\physics\\solvers\\SolverBodyRigidSPU.cpp       #exclude for windows PC build
.\\physics\\solvers\\SolverBodyRigidSPU.spu.cpp   #exclude for windows PC build

 

Also Visual Studio Express 2010 no longer provides vcbuild.exe. Instead msbuild.exe with different command line switches has to be used.

 

Visual C++ projects use a new file format (.vcxproj) that replaces the old format (.vcproj). To build projects, you now use MSBuild.exe instead of VCBuild.exe. MSBuild, which is the build platform for Microsoft, provides several benefits, including better diagnostics, extensibility, and integration. For more information, see MSBuild (Visual C++).

  • 4 weeks later...
Posted

I also have this problem,but the new Release:2011-09-01 Beta is fix it now.

×
×
  • Create New...