SConstruct (5199:a1809e673f69) | SConstruct (5200:9cfaa7c2f766) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2004-2005 The Regents of The University of Michigan 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions are 8# met: redistributions of source code must retain the above copyright --- 262 unchanged lines hidden (view full) --- 271else: 272 print 'Error: Don\'t know what compiler options to use for your compiler.' 273 print ' Please fix SConstruct and src/SConscript and try again.' 274 Exit(1) 275 276if sys.platform == 'cygwin': 277 # cygwin has some header file issues... 278 env.Append(CCFLAGS=Split("-Wno-uninitialized")) | 1# -*- mode:python -*- 2 3# Copyright (c) 2004-2005 The Regents of The University of Michigan 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions are 8# met: redistributions of source code must retain the above copyright --- 262 unchanged lines hidden (view full) --- 271else: 272 print 'Error: Don\'t know what compiler options to use for your compiler.' 273 print ' Please fix SConstruct and src/SConscript and try again.' 274 Exit(1) 275 276if sys.platform == 'cygwin': 277 # cygwin has some header file issues... 278 env.Append(CCFLAGS=Split("-Wno-uninitialized")) |
279env.Append(CPPPATH=[str(Dir('ext/dnet'))]) | 279env.Append(CPPPATH=[Dir('ext/dnet')]) |
280 281# Check for SWIG 282if not env.has_key('SWIG'): 283 print 'Error: SWIG utility not found.' 284 print ' Please install (see http://www.swig.org) and retry.' 285 Exit(1) 286 287# Check for appropriate SWIG version --- 445 unchanged lines hidden --- | 280 281# Check for SWIG 282if not env.has_key('SWIG'): 283 print 'Error: SWIG utility not found.' 284 print ' Please install (see http://www.swig.org) and retry.' 285 Exit(1) 286 287# Check for appropriate SWIG version --- 445 unchanged lines hidden --- |