77 qtToolsDir = Preferences.getQt("QtToolsDir") |
77 qtToolsDir = Preferences.getQt("QtToolsDir") |
78 if qtToolsDir: |
78 if qtToolsDir: |
79 if libexec: |
79 if libexec: |
80 binPath = os.path.join(qtToolsDir, "..", "libexec") |
80 binPath = os.path.join(qtToolsDir, "..", "libexec") |
81 if not os.path.exists(binPath): |
81 if not os.path.exists(binPath): |
82 binPath = qtToolsDir |
82 binPath = os.path.join(qtToolsDir, "libexec") |
|
83 if not os.path.exists(binPath): |
|
84 binPath = qtToolsDir |
83 else: |
85 else: |
84 binPath = Preferences.getQt("QtToolsDir") |
86 binPath = Preferences.getQt("QtToolsDir") |
85 if not os.path.exists(binPath): |
87 if not os.path.exists(binPath): |
86 binPath = "" |
88 binPath = "" |
87 |
89 |