| 23 |
|
|
| 24 |
|
def allplats_setup(env): |
| 25 |
|
from build_utils import find_libs |
| 26 |
+ |
find_libs.find_radlib(env) |
| 27 |
|
find_libs.find_x11(env) |
| 28 |
|
find_libs.find_gl(env) # OpenGL |
| 29 |
|
find_libs.find_libtiff(env) |
| 48 |
|
|
| 49 |
|
if os.name == 'posix': |
| 50 |
|
from build_utils import install |
| 51 |
< |
csh_b = Builder(action = install.install_cshscript, |
| 51 |
> |
csh_b = Builder(action = install.install_script, |
| 52 |
|
suffix = '', src_suffix = '.csh') |
| 53 |
< |
env.Append(BUILDERS={'InstallCsh': csh_b}) |
| 53 |
> |
env.Append(BUILDERS={'InstallScript': csh_b}) |
| 54 |
|
|
| 55 |
|
# configure platform-specific stuff |
| 56 |
|
from build_utils import load_plat |
| 68 |
|
|
| 69 |
|
# fill in generic config |
| 70 |
|
allplats_setup(env) |
| 70 |
– |
|
| 71 |
|
|
| 72 |
|
# Bring in all the actual things to build |
| 73 |
|
Export('env') |