sync.profile 733 B

1234567891011121314151617
  1. %modules = ( # path to module name map
  2. "QtPurchasing" => "$basedir/src/purchasing",
  3. );
  4. %moduleheaders = ( # restrict the module headers to those found in relative path
  5. );
  6. # Module dependencies.
  7. # Every module that is required to build this module should have one entry.
  8. # Each of the module version specifiers can take one of the following values:
  9. # - A specific Git revision.
  10. # - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
  11. # - an empty string to use the same branch under test (dependencies will become "refs/heads/master" if we are in the master branch)
  12. #
  13. %dependencies = (
  14. "qtbase" => "",
  15. "qtandroidextras" => "",
  16. "qtdeclarative" => "",
  17. );