QtCreator便携增强版,集成Qt4.8和MSVC2010编译器
本帖最后由 Loaden 于 2012-03-17 10:45:43 编辑 2012-03-17 更新: 垃圾快传,被删除了,到这里想办法下载吧
https://github.com/loaden/pqtc
点此下载32位版本(159MB)
文件: D:\qpSOFT\DEVx86\DEVx86.exe
大小: 167446335 字节
修改时间: 2011年12月18日, 18:00:12
MD5: C3BB5A0977DE9725F2A13414557F17A3
SHA1: EA3491AAA23CB4F18F5E69A678C7A422A0395B77
CRC32: DD3F1B4B
点此下载64位版本(170MB)
文件: D:\qpSOFT\DEVx64\DEVx64.exe
大小: 179030072 字节
修改时间: 2011年12月18日, 17:44:31
MD5: 7F1AEF4F484861CA89DDF7D7257A432F
SHA1: 836C5A87DF8E92ABDBE4B7C56031F423B4482C9A
CRC32: 56A5DF1A
压缩包保证干净,包内东西有:
1. QtCreator便携版,基于master分支:位于qt目录下
2. Qt4.8正式版,动态编译,并尽力优化:位于qt目录下
3. 一些库:directx9、irrlicht、atl7.1、wtl,位于sdk目录下
4. MSVC2010SP1编译器,在bin、include、lib三个目录下
5. jom/astyle/zip/cmake,位于bin、share目录下
6. 一个文档总结,在share目录下
近期把QtCreator当作一款C/C++ IDE,使用起来发现还是有不少优点的。
通过阅读QtCreator的代码,也让我大开眼界,受益匪浅。
通过一段时间的努力,目前官方正式接纳我提交的23个补丁,放在这里没有炫耀的意思(没有这个资本),只想说,其实参与QtCreator开发,也是很容易的。只要在使用过程中,发现了问题,然后读QtCreator代码,再增加相应特性,或者修复、完善相应缺陷即可。
fd4e21b Debugger: Fix warning
ee6c693 Add execute filter for locator
7140642 Fix central Esc handling again
75c7b5f Add plain C/C++ project for CMake
263d98b Fix crash of 'Build All'
73138f6 Git: Figure out codec for amend commit
8382dd7 Git: Fix error text codec of 'Show Commit...'
18b675d Double-click to select current block
86f0f93 Fix for review #7748
3c759ad Abort running is possible if any build error occured
4537e1b Add support to force skip deploy before running or debugging
2db25cb Add "Ctrl+F10" for "Run to Line" action
d136b01 Coding style fixes
6af1f37 Build fix when use -no-stl option
c7d712e Git: Add support for the i18n.logoutputencoding setting
08f97b5 Git: Support encoding convert of commit messages
2ab22fe Git: Add branches to locator
4ea9c21 C++: Improve completion assist
854c0f2 Git: Fixed launch gitk failed
237ddd0 Snippets: Add 'switch' trigger for C++ code snippets
625b0ae Snippets: Put the cursor in a more useful final position
cc4e2a4 Creates a pure console project using QMake, not using Qt library.
5e81630 Editors: Change indent behavior for single line selection
b080bd5 Locator: Add shortcut for right button
6d29577 Execute Locator: Add encoding convert of output text
79748a4 Add maximize editor action
④ 执行D:\qpSOFT\DEVx86\cmd.bat将运行 Qt Creator
⑤ 执行D:\qpSOFT\DEVx86\cmd.lnk可命令行编译
⑥ 默认禁用了一部分插件,请根据需要在 Help > About Plugins 里重新选择
版权声明:
1. Windows SDK及MSVC 2010编译器版权归微软所有:http://www.microsoft.com
2. Qt Creator 来源于 Qt Project 项目:http://www.qt-project.org
3. CMake 来源于:http://www.cmake.org
注:64位版本缺少一个DLL,这里下载。
另:例子双击无法打开的修正补丁
commit 782d6d8aa520a19f802f7deebbed5dfc07aa3437
Author: Yuchen Deng <loaden@gmail.com>
Date: Mon Dec 26 21:14:23 2011 +0800
WelcomePage: Fix function parameters
Change-Id: I2dc2891380e1dbe0326abd3965c74cc94baf948f
diff --git a/share/qtcreator/welcomescreen/widgets/Delegate.qml b/share/qtcreator/welcomescreen/widgets/Delegate.qml
index 49cfc58..ac961a3 100644
--- a/share/qtcreator/welcomescreen/widgets/Delegate.qml
+++ b/share/qtcreator/welcomescreen/widgets/Delegate.qml
@@ -235,7 +235,7 @@ Rectangle {
if (model.isVideo)
gettingStarted.openUrl(model.videoUrl);
else if (model.hasSourceCode)
- gettingStarted.openProject(model.projectPath, model.filesToOpen, model.docUrl)
+ gettingStarted.openProject(model.projectPath, model.filesToOpen, model.docUrl, model.dependencies)
else
gettingStarted.openSplitHelp(model.docUrl);
}