diff options
author | Thiago Macieira <thiago@macieira.org> | 2013-10-08 21:40:24 -0700 |
---|---|---|
committer | Thiago Macieira <thiago@macieira.org> | 2013-10-08 23:29:44 -0700 |
commit | 6c90fa7c64a151ac0c13f69966863608e77276af (patch) | |
tree | 6fb95aacec3433a631207748e0217d5b3e27ecc2 /subsurface-install.pri | |
parent | 603d65c9616ee85e0e0de1535874b981261589d2 (diff) | |
download | subsurface-6c90fa7c64a151ac0c13f69966863608e77276af.tar.gz |
Fix the Marble data installation for Windows
Qt-only Marble expects the data to be on applicationDirPath() + "/data".
Signed-off-by: Thiago Macieira <thiago@macieira.org>
Diffstat (limited to 'subsurface-install.pri')
-rw-r--r-- | subsurface-install.pri | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/subsurface-install.pri b/subsurface-install.pri index 0615bc325..3a625973a 100644 --- a/subsurface-install.pri +++ b/subsurface-install.pri @@ -39,9 +39,10 @@ mac { WINDOWSSTAGING = packaging/windows deploy.path = $$WINDOWSSTAGING - deploy.files += $$marbledir.files $$xslt.files $$doc.files + deploy.files += $$xslt.files $$doc.files target.path = $$WINDOWSSTAGING - INSTALLS += deploy target + marbledir.path = $$WINDOWSSTAGING/data + INSTALLS += deploy marbledir target qt_conf.commands = echo \'[Paths]\' > $@ qt_conf.commands += $${nltab}echo \'Prefix=.\' >> $@ |