(targets,sources=[],properties=None)
| 323 | compile_c_cpp(targets,sources) |
| 324 | |
| 325 | def compile_cpp_preprocess(targets,sources=[],properties=None): |
| 326 | get_rspline(targets,'-TP') |
| 327 | sources += bjam.call('get-target-variable',targets,'PCH_FILE') |
| 328 | sources += bjam.call('get-target-variable',targets,'PCH_HEADER') |
| 329 | preprocess_c_cpp(targets,sources) |
| 330 | |
| 331 | def compile_cpp_pch(targets,sources=[],properties=None): |
| 332 | get_rspline([targets[1]], '-TP') |
nothing calls this directly
no test coverage detected