Advertisement
orgads

Untitled

Jul 17th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. From ff38eb160525737e5b1ad8041e54924f3009510c Mon Sep 17 00:00:00 2001
  2. From: Orgad Shaneh <orgad.shaneh@audiocodes.com>
  3. Date: Wed, 17 Jul 2013 15:18:29 +0300
  4. Subject: [PATCH] Qbs: Fix install path for styleplugin on Windows
  5.  
  6. Change-Id: Ic3743df91ac48969c751ebbe78c62adb5b4850bb
  7. ---
  8. src/libs/qtcomponents/styleitem/styleitem.qbs | 3 ++-
  9. 1 file changed, 2 insertions(+), 1 deletion(-)
  10.  
  11. diff --git a/src/libs/qtcomponents/styleitem/styleitem.qbs b/src/libs/qtcomponents/styleitem/styleitem.qbs
  12. index 6d94822..b4b70c8 100644
  13. --- a/src/libs/qtcomponents/styleitem/styleitem.qbs
  14. +++ b/src/libs/qtcomponents/styleitem/styleitem.qbs
  15. @@ -32,6 +32,7 @@ DynamicLibrary {
  16. Group {
  17. fileTagsFilter: product.type
  18. qbs.install: true
  19. - qbs.installDir: project.ide_library_path + "/qtcomponents/plugin"
  20. + qbs.installDir: (qbs.targetOS.contains("windows") ? "lib/qtcreator" : project.ide_library_path)
  21. + + "/qtcomponents/plugin"
  22. }
  23. }
  24. --
  25. 1.8.3.msysgit.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement