:: http://download.qt-project.org/official_releases/qt/5.2/5.2.0/single/qt-everywhere-opensource-src-5.2.0.zip

call "D:\Program Files\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86

cd D:\Desktop\QT\qt-everywhere-opensource-src-5.2.0

:: 显示帮助
:: configure.bat -platform win32-msvc2013 -h

configure.bat -prefix D:\Qt\Qt5.2.0 -platform win32-msvc2013 -debug -opensource -shared -no-compile-examples

:: http://qt-project.org/wiki/jom
set path=D:\Desktop\QT\jom;%path%
jom /J 4
jom install

 


本文链接地址: 使用Visual Studio 2013编译QT5.2.0
https://blog.qingfengju.com/index.asp?id=362

分类:Win32/C++ 查看次数:15290 发布时间:2013/12/21 9:13:41

Visual C++ 6.0 在 Windows 7/Windows Server 2008 R2 下运行,会在打开.dsw、.dsp文件时崩溃,网上的说法有好几种:
1.与Office 2007/2010/Visio冲突
2.是与Windows 7不兼容
无论哪种说法,都说要使用FileTool.dll这个小插件来解决,但是使用了这个插件,还卸载了Office 2010,仍然会在打开项目时崩溃。

调试运行 MSDEV.EXE,发现调用堆栈上的 AcGenral.dll!6a17e28c() 比较可疑,查看 AcGenral.dll 后发现,这个dll是 Windows Compatibility DLL,于是去掉“Microsoft Visual C++ 6.0” 快捷方式属性中“以兼容模式运行这个程序”前面的勾,Visual C++ 6.0 终于可以正常使用了。
 


本文链接地址: 在 Windows Server 2008 R2 中使用 Visual C++ 6.0
https://blog.qingfengju.com/index.asp?id=359

分类:Win32/C++ 查看次数:7335 发布时间:2013/12/18 12:36:09