diff options
Diffstat (limited to 'sync.profile')
-rw-r--r-- | sync.profile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sync.profile b/sync.profile index 275e96c..6737795 100644 --- a/sync.profile +++ b/sync.profile @@ -12,3 +12,15 @@ %modulepris = ( "QtSvg" => "$basedir/modules/qt_svg.pri", ); +# Modules and programs, and their dependencies. +# Each of the module version specifiers can take one of the following values: +# - A specific Git revision. +# - "LATEST_REVISION", to always test against the latest revision. +# - "LATEST_RELEASE", to always test against the latest public release. +# - "THIS_REPOSITORY", to indicate that the module is in this repository. +%dependencies = ( + "QtSvg" => { + "QtCore" => "0c637cb07ba3c9b353e7e483a209537485cc4e2a", + "QtGui" => "0c637cb07ba3c9b353e7e483a209537485cc4e2a", + }, +); |