|
|
| 475 |
env = bld.env_of_name('default') |
475 |
env = bld.env_of_name('default') |
| 476 |
if env['ENABLE_EXAMPLES']: |
476 |
if env['ENABLE_EXAMPLES']: |
| 477 |
for dir in os.listdir('examples'): |
477 |
for dir in os.listdir('examples'): |
|
|
478 |
if dir.startswith('.') or dir == 'CVS': |
| 479 |
continue |
| 478 |
if os.path.isdir(os.path.join('examples', dir)): |
480 |
if os.path.isdir(os.path.join('examples', dir)): |
| 479 |
bld.add_subdirs(os.path.join('examples', dir)) |
481 |
bld.add_subdirs(os.path.join('examples', dir)) |
| 480 |
|
482 |
|