Changeset 93 for trunk/SConstruct

Show
Ignore:
Timestamp:
11/24/05 10:51:29 (3 years ago)
Author:
pavlenko
Message:

added feature factory

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/SConstruct

    r81 r93  
    2929opts.Add(PathOption('PYTHON_ROOT','python root directory','/opt/python')) 
    3030opts.Add('PYTHON_VERSION','python version','2.4') 
    31 opts.Add(ListOption('DATASOURCES','list of available datasources','postgis',['postgis','shape']))  
     31opts.Add(ListOption('DATASOURCES','list of available datasources','shape',['postgis','shape','raster']))  
    3232opts.Add('POSTGRESQL_ROOT','path to postgresql prefix','/usr/local') 
    3333     
     
    3737build_prefix = build_dir+'/'+str(platform) 
    3838 
    39 cxx = 'g++' 
     39#cxx = 'g++' 
    4040 
    41 env = Environment(CXX=cxx,ENV=os.environ, options=opts) 
     41env = Environment(ENV=os.environ, options=opts) 
    4242 
    4343cxx_debug='-Wall -ftemplate-depth-100 -O0 -fno-inline -g -pthread -DDEBUG'