From: c.m. <c....@ch...> - 2005-04-09 11:31:34
|
Hi, i'm trying to build the Python bindings for GMTL 0.4.5 on Windows. I have Visual Studio .NET 2003, Boost 1.32, ActiveState's Python 2.4 and Cygwin (in case that's needed) installed. Here's what happens, when I start the build process (after running vsvars32.bat): ------------------------------------------------------------ D:\gmtl>scons install prefix=\gmtlbuilt EnablePython=True BoostVersion=1.32 BoostPythonDir=D:\Progra~1\Boost scons: Reading SConscript files ... Building GMTL Version: 0.4.5 checking for CppUnitDir [/usr/local/include]... no checking for EnablePython [True]... Using Boost version 1.32 checking for BoostPythonDir [D:\Progra~1\Boost]... D:\Progra~1\Boost\include\boost\version.hpp not found. Trying D:\Progra~1\Boost\include\boost-1_32\boost\version.hpp found version: 103200 Preparing build settings... scons: done reading SConscript files. scons: Building targets ... Install file: "gmtl-config" as "\gmtlbuilt\bin\gmtl-config" Install file: "gmtl\AABox.h" as "\gmtlbuilt\include\gmtl\AABox.h" Install file: "gmtl\AABoxOps.h" as "\gmtlbuilt\include\gmtl\AABoxOps.h" Install file: "gmtl\AxisAngle.h" as "\gmtlbuilt\include\gmtl\AxisAngle.h" Install file: "gmtl\AxisAngleOps.h" as "\gmtlbuilt\include\gmtl\AxisAngleOps.h" Install file: "gmtl\Comparitors.h" as "\gmtlbuilt\include\gmtl\Comparitors.h" Install file: "gmtl\Config.h" as "\gmtlbuilt\include\gmtl\Config.h" Install file: "gmtl\Containment.h" as "\gmtlbuilt\include\gmtl\Containment.h" Install file: "gmtl\Coord.h" as "\gmtlbuilt\include\gmtl\Coord.h" Install file: "gmtl\CoordOps.h" as "\gmtlbuilt\include\gmtl\CoordOps.h" Install file: "gmtl\Defines.h" as "\gmtlbuilt\include\gmtl\Defines.h" Install file: "gmtl\EulerAngle.h" as "\gmtlbuilt\include\gmtl\EulerAngle.h" Install file: "gmtl\EulerAngleOps.h" as "\gmtlbuilt\include\gmtl\EulerAngleOps.h" Install file: "gmtl\External\OpenSGConvert.h" as "\gmtlbuilt\include\gmtl\External\OpenSGConvert.h" Install file: "gmtl\Generate.h" as "\gmtlbuilt\include\gmtl\Generate.h" Install file: "gmtl\Helpers.h" as "\gmtlbuilt\include\gmtl\Helpers.h" Install file: "gmtl\Intersection.h" as "\gmtlbuilt\include\gmtl\Intersection.h" Install file: "gmtl\LineSeg.h" as "\gmtlbuilt\include\gmtl\LineSeg.h" Install file: "gmtl\LineSegOps.h" as "\gmtlbuilt\include\gmtl\LineSegOps.h" Install file: "gmtl\Math.h" as "\gmtlbuilt\include\gmtl\Math.h" Install file: "gmtl\Matrix.h" as "\gmtlbuilt\include\gmtl\Matrix.h" Install file: "gmtl\MatrixOps.h" as "\gmtlbuilt\include\gmtl\MatrixOps.h" Install file: "gmtl\Output.h" as "\gmtlbuilt\include\gmtl\Output.h" Install file: "gmtl\Plane.h" as "\gmtlbuilt\include\gmtl\Plane.h" Install file: "gmtl\PlaneOps.h" as "\gmtlbuilt\include\gmtl\PlaneOps.h" Install file: "gmtl\Point.h" as "\gmtlbuilt\include\gmtl\Point.h" Install file: "gmtl\Quat.h" as "\gmtlbuilt\include\gmtl\Quat.h" Install file: "gmtl\QuatOps.h" as "\gmtlbuilt\include\gmtl\QuatOps.h" Install file: "gmtl\Ray.h" as "\gmtlbuilt\include\gmtl\Ray.h" Install file: "gmtl\RayOps.h" as "\gmtlbuilt\include\gmtl\RayOps.h" Install file: "gmtl\Sphere.h" as "\gmtlbuilt\include\gmtl\Sphere.h" Install file: "gmtl\SphereOps.h" as "\gmtlbuilt\include\gmtl\SphereOps.h" Install file: "gmtl\Tri.h" as "\gmtlbuilt\include\gmtl\Tri.h" Install file: "gmtl\TriOps.h" as "\gmtlbuilt\include\gmtl\TriOps.h" Install file: "gmtl\Util\Assert.h" as "\gmtlbuilt\include\gmtl\Util\Assert.h" Install file: "gmtl\Util\Meta.h" as "\gmtlbuilt\include\gmtl\Util\Meta.h" Install file: "gmtl\Util\StaticAssert.h" as "\gmtlbuilt\include\gmtl\Util\StaticAssert.h" Install file: "gmtl\Vec.h" as "\gmtlbuilt\include\gmtl\Vec.h" Install file: "gmtl\VecBase.h" as "\gmtlbuilt\include\gmtl\VecBase.h" Install file: "gmtl\VecExprMeta.h" as "\gmtlbuilt\include\gmtl\VecExprMeta.h" Install file: "gmtl\VecOps.h" as "\gmtlbuilt\include\gmtl\VecOps.h" Install file: "gmtl\VecOpsMeta.h" as "\gmtlbuilt\include\gmtl\VecOpsMeta.h" Install file: "gmtl\Version.h" as "\gmtlbuilt\include\gmtl\Version.h" Install file: "gmtl\Xforms.h" as "\gmtlbuilt\include\gmtl\Xforms.h" Install file: "gmtl\gmtl.h" as "\gmtlbuilt\include\gmtl\gmtl.h" Install file: "python\test\gmtl-test.py" as "\gmtlbuilt\python\test\gmtl-test.py" scons: done building targets. ------------------------------------------------------------ As you can see, only the "gmtl-test.py" is copied; no Python module is built. No error messages. Any ideas what's going on here?! I'm trying to hunt that problem down in the SConstruct files, but my Python skills are lacking. :) Thanks, Christian |