(target, source, env)
| 712 | return env['LIBPREFIX'] + GroupLibName(name, env) + env['LIBSUFFIX'] |
| 713 | |
| 714 | def BuildLibInstallAction(target, source, env): |
| 715 | lib_name = GetOption('buildlib') |
| 716 | for Group in Projects: |
| 717 | if Group['name'] == lib_name: |
| 718 | lib_name = GroupLibFullName(Group['name'], env) |
| 719 | dst_name = os.path.join(Group['path'], lib_name) |
| 720 | print('Copy '+lib_name+' => ' + dst_name) |
| 721 | do_copy_file(lib_name, dst_name) |
| 722 | break |
| 723 | |
| 724 | def DoBuilding(target, objects): |
| 725 |
nothing calls this directly
no test coverage detected