(targets, sources = [], properties = None)
| 287 | bjam.call('set-target-variable', targets, 'CC_RSPLINE', result) |
| 288 | |
| 289 | def compile_c(targets, sources = [], properties = None): |
| 290 | get_manager().engine().set_target_variable( targets[1], 'C++FLAGS', '' ) |
| 291 | get_rspline(targets, '-TC') |
| 292 | sources += bjam.call('get-target-variable',targets,'PCH_FILE') |
| 293 | sources += bjam.call('get-target-variable',targets,'PCH_HEADER') |
| 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', '' ) |
nothing calls this directly
no test coverage detected