+44(0) 1234 567 890 info@domainname.com

August 07, 2010

Solved : error PRJ0019, problems with post-build event

5:24 PM

Share it Please
NxOgre is a physics wrapper for PhysX. It is open-source and released under the LGPL licence. It was created and maintained by Betajaen. There are two main versions of NxOgre; Bloody Mess and Bleeding. Bloody Mess is the latest unstable code and Bleeding is the older stable branch.

Although NxOgre has OGRE as part of it’s name, it will work with any renderer in 3D, 2D or even none at all. It comes with a single demo application framework called Cake in various forms, and a multi-purpose command-line/GUI application called Flour.


On NxOgre website there is tutorial how to compiling NxOgre from a release or Git. I encounter something wrong when I compiled it on Visual Studio 2008 by a release. This wrong is "error PRJ0019, problems with post-build event". I searched to the NxOgre forum, but still not found a solution yet. But, finally after I manipulated and rebuild NxOgre project, it build success. And that errors were not appear again.

I just add some script at Project properties -> Build Events -> Post-Build Event ->Command Line :

mkdir  "$(SolutionDir)..\..\..\BloodyCake\application\"
mkdir  "$(SolutionDir)..\..\..\BloodyFlour\application\"

Without above command, the execution can not be done. So, build process will fault. After adding two above command, build is success :-)

0 komentar: