64 "version": "", |
64 "version": "", |
65 "versionCleanup": None, |
65 "versionCleanup": None, |
66 }) |
66 }) |
67 |
67 |
68 # 2. Qt Help Generator |
68 # 2. Qt Help Generator |
69 exe = 'qhelpgenerator' |
69 exe = os.path.join(Utilities.getQtBinariesPath(), 'qhelpgenerator') |
70 if Utilities.isWindowsPlatform(): |
70 if Utilities.isWindowsPlatform(): |
71 exe += '.exe' |
71 exe += '.exe' |
72 dataList.append({ |
72 dataList.append({ |
73 "programEntry": True, |
73 "programEntry": True, |
74 "header": QApplication.translate("EricdocPlugin", |
74 "header": QApplication.translate("EricdocPlugin", |
80 "version": "", |
80 "version": "", |
81 "versionCleanup": (0, -1), |
81 "versionCleanup": (0, -1), |
82 }) |
82 }) |
83 |
83 |
84 # 3. Qt Collection Generator |
84 # 3. Qt Collection Generator |
85 exe = 'qcollectiongenerator' |
85 exe = os.path.join(Utilities.getQtBinariesPath(), 'qcollectiongenerator') |
86 if Utilities.isWindowsPlatform(): |
86 if Utilities.isWindowsPlatform(): |
87 exe += '.exe' |
87 exe += '.exe' |
88 dataList.append({ |
88 dataList.append({ |
89 "programEntry": True, |
89 "programEntry": True, |
90 "header": QApplication.translate("EricdocPlugin", |
90 "header": QApplication.translate("EricdocPlugin", |