Changeset 357:fa1c2743f6d8


Ignore:
Timestamp:
03/26/10 19:43:37 (3 years ago)
Author:
rkuck
Branch:
default
Convert:
svn:76c98907-0e80-4c83-94c7-b346fc2aefc2/trunk@363
Message:

Added avango-utils module.

This is experimental at the moment and needs to be explicitly activated
(using UTILS_SUPPORT in the localdefs.py file).

Files:
17 added
1 edited

Legend:

Unmodified
Added
Removed
  • SConstruct

    r288 r357  
    5757               'Enable VRPN support for the AvangoDaemon module', 
    5858               False), 
     59    BoolOption('UTILS_SUPPORT', 
     60               'Enable building utility module (EXPERIMENTAL)', 
     61               False), 
    5962    ) 
    6063 
     
    110113         
    111114if not avango.build.oshelper.os_is_windows() and \ 
    112         not avango.build.oshelper.os_is_mac(): #FIXME get module running under Windows/MAC 
     115  not avango.build.oshelper.os_is_mac(): #FIXME get module running under Windows/MAC 
    113116    avango.build.SConscript('avango-sound/SConscript') 
    114117if env['OPENAL_SUPPORT']: 
    115118    avango.build.SConscript('avango-openal/SConscript') 
    116 avango.build.SConscript('avango-tools/SConscript')     
     119avango.build.SConscript('avango-tools/SConscript') 
    117120if env['DISPLAY_SUPPORT']: 
    118121    avango.build.SConscript('avango-display/SConscript') 
    119122if env['CONNECT_SUPPORT']: 
    120123    avango.build.SConscript('avango-connect/SConscript') 
     124if env['UTILS_SUPPORT']: 
     125    avango.build.SConscript('avango-utils/SConscript') 
    121126avango.build.SConscript('avango-inspector/SConscript') 
    122127avango.build.SConscript('avango-doc/SConscript') 
Note: See TracChangeset for help on using the changeset viewer.