21st Thu
opencolladaビルドメモ
opencolladaはsconsで以下のオプションでbuildする。
pre>>
scons RELEASE=1 PCRENATIVE=0 XMLPARSER=expat NOVALIDATION=1
<<--
posted by
genki on Thu 21 Jan 2010 at 04:04 with 0 comments
opencolladaはsconsで以下のオプションでbuildする。
pre>>
scons RELEASE=1 PCRENATIVE=0 XMLPARSER=expat NOVALIDATION=1
<<--
I was struggling to build collada-dom on Linux machine for a while.
But the task turned out simple after I found the right solution.
The solution is here;
pre>>
$ make os=linux
<<--
That's too simple compared with my time spent for it :'-(
At first, you download files of Collada from here
http://sourceforge.net/projects/collada-dom/
It includes collada-dom, but you must build it before using.
To build the package, you must unpack the zip and move to dom/ directory. And
pre>>
% make
% make install
<<--
That's all.