blob: 2ffe15cd33f7d72c3a618e18492bed10c1a064cd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env python
Import('env')
Import('env_modules')
env_gridmap = env_modules.Clone()
env_gridmap.add_source_files(env.modules_sources, "*.cpp")
Export('env')
|