Hello Johannes,

Schaefer Johannes wrote:
> I want to use OpenSG 1.8 with STLport under Windows XP and MSVC2008 SP1. No 
> problem, just say scons where are the STLport libs are.
> scons compiler=msvc90 qt4="C:\Qt\2009.03\qt" type=dbg exr=no 
> stlport="D:\STLport-5.2.1"
> 
> But I'm using STLport with Boost, so when I'm compiling OpenSG the boost 
> includes were not found.

i'm not familiar with the details of STLport, by "using STLport with 
Boost" do you mean that STLport makes use of boost internally or to 
provide certain parts of the standard library?

> How can I tell scons where are the boost libs. Is there console option for 
> scons?

no, that is not built into the SConstruct, since OpenSG 1.x does not use 
boost. You could try to add a simple option to the build by doing the 
following:
- in the class PlatformOptions: add an option (line ~500)
- in the class ToolChain: add the option value to the search path for 
include directories (~line 700):
   self.env.Append(CPPPATH = [_po.getOption("boost_inc_dir")])

or you could try setting the CL environment variable to contain the 
right command line arguments for the compiler.

        Cheers,
                Carsten

------------------------------------------------------------------------------
Come build with us! The BlackBerry® Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9-12, 2009. Register now!
http://p.sf.net/sfu/devconf
_______________________________________________
Opensg-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/opensg-users

Reply via email to