1. 出现此类问题的原因 由于原visual studio文件中的安装中出现问题,所以原有的SDK(soft development kits)文件出现缺失: 2. 解决方法1 重新下载SDK工具,安装: 3. 解决方法2 修复visual studio2013,安装SDK工具: 4. 解决方法3 右键项目-属性-VC++-包含目录:$C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Lib$ 右键项目-属性-VC++-引用目录:$C:\Pr…
转自:http://blog.csdn.net/xiaochunzao/article/details/16987703 Visual Studio 2013 编译旧的 multi-byte character set MFC 出现 Error1 error MSB8031:Use of MBCS encoding in MFC projects require an additional library to be downloaded and installed.Please see htt…
文章目录 去年时候使用了VS2008编译了Tesseract 3.02版本,主要是参考了一份官方文档,但是对于目前的最新版本并没有给出说明. 本文主要参考了Paul Vorbach的How to build Tesseract 3.03 with Visual Studio 2013,在翻译的同时,加上自己的一些经验总结. 编译新版本最大问题在于新版本的Tesseract依赖新版的Leptonica库,后者是一个开源的C语言图像处理包.新版本的Leptonica需要新版的zlib,libpng,…
对于 32 位 Python 的 C 扩展,以前用过 mingW32 编译, 但是 mingW32 不支持 64 位 Python 的 C 扩展编译,详情可见 stackoverflow,这位前辈的大意如下, 以下介绍 Visual Studio 2013 编译 64 位 Python 的 C 扩展步骤: 1)准备 C 文件和包装文件, ExtDemo.c // Purpose: C code, for wrappered. #include <stdio.h> #include <st…
1.重装ArcObject SDK for .NET Framework方法 (1)问题描述: 环境:WIN10 64bit.Visual Studio 2013.ArcGIS10.1.ArcGIS Engine 10.1 之前已安装有VS2013(或者2013及以上Studio版本),后来安装的ArcGIS和AE. 安装后,在VS2013的C#模板下,看不到“ArcGIS”的项,而且工具箱中也没有ArcGIS的组件. (2)解决方法: 一般解决方法是, “添加选项卡”--“选择项...”--…
编译的Audacity版本为2.1.2,由于实在windows下编译,其源代码可以从Github上取得 git clone https://github.com/audacity/audacity. 1. 编译WxWidgets Audacity使用wxWidgets作为GUI的框架,Audacity2.1.2需要wxWidgets 3.0.2,所以在编译Audacity之前需要编译wxWidgets.wxWidgets的下载地址为http://www.wxwidgets.org/downloa…
If you'd like to build the Chromium Embedded Framework (a wrapper for Chromium, for creating browser-based applications) using Visual Studio 2013, you can do so by following the below steps. 1. Get Visual Studio 2013 (I use the Community Edition beca…
1.创建一个Visual C++的Empty Project,如果需要支持Windows XP将Platform Toolset设置为Visual Studio 2013 - Windows XP (v120_xp). 2.Configuration Type设置为Dynamic Library (.dll). 3.添加对应的源代码文件,但lua.c.luac.c文件除外. 4.C/C++ -> Command Line的Additional Options添加/D _CRT_SECURE_NO…
1.Platform Toolset设置Visual Studio 2013 - Windows XP (v120_xp). 2.Character Set设置Use Multi-Byte Character Set. 3.添加以下Preprocessor Definitions: NPRT_EXPORTS XP_WIN32 MOZILLA_STRICT_API XPCOM_GLUE XP_WIN _X86_ _CRT_SECURE_NO_WARNINGS 4.Precomplied Heade…
今天使用Visual Studio 2013打开一个windows 应用商店程序的时候,发现出现如下异常:    at System.Windows.Input.Cursor.LoadFromFile(String fileName)   at System.Windows.Input.Cursor..ctor(String cursorFile)   at Microsoft.Expression.Utility.FileResourceManager.GetCursor(String nam…