Setup whether Boost Build is expected to automatically prepend prefixes to its built library targets.
(toolset)
| 127 | |
| 128 | |
| 129 | def prepare_library_prefix(toolset): |
| 130 | """ |
| 131 | Setup whether Boost Build is expected to automatically prepend prefixes |
| 132 | to its built library targets. |
| 133 | |
| 134 | """ |
| 135 | global lib_prefix |
| 136 | lib_prefix = "lib" |
| 137 | |
| 138 | global dll_prefix |
| 139 | if cygwin: |
| 140 | dll_prefix = "cyg" |
| 141 | elif windows and toolset != "gcc": |
| 142 | dll_prefix = None |
| 143 | else: |
| 144 | dll_prefix = "lib" |
| 145 | |
| 146 | |
| 147 | def re_remove(sequence, regex): |
no outgoing calls
no test coverage detected