(targets, sources = [], properties = None)
| 294 | compile_c_cpp(targets,sources) |
| 295 | |
| 296 | def compile_c_preprocess(targets, sources = [], properties = None): |
| 297 | get_manager().engine().set_target_variable( target[1], 'C++FLAGS', '' ) |
| 298 | get_rspline(targets, '-TC') |
| 299 | sources += bjam.call('get-target-variable',targets,'PCH_FILE') |
| 300 | sources += bjam.call('get-target-variable',targets,'PCH_HEADER') |
| 301 | preprocess_c_cpp(targets,sources) |
| 302 | |
| 303 | def compile_c_pch(targets, sources = [], properties = []): |
| 304 | get_manager().engine().set_target_variable( target[1], 'C++FLAGS', '' ) |
nothing calls this directly
no test coverage detected