include_regular_expression.rst 551 B

123456789101112131415161718
  1. include_regular_expression
  2. --------------------------
  3. Set the regular expression used for dependency checking.
  4. ::
  5. include_regular_expression(regex_match [regex_complain])
  6. Set the regular expressions used in dependency checking. Only files
  7. matching ``regex_match`` will be traced as dependencies. Only files
  8. matching ``regex_complain`` will generate warnings if they cannot be found
  9. (standard header paths are not searched). The defaults are:
  10. ::
  11. regex_match = "^.*$" (match everything)
  12. regex_complain = "^$" (match empty string only)