编译jsoncpp库时,release出错

原文链接点击打开链接

generated file: '../../build/vs71/release/lib_json\json_writer.asm': No such file or directory

I'm trying to use json-cpp in Visual Studio 2010. I have no problem when compiling debug,but release gives me the following error:

C:\Dev\ThirdParty\jsoncpp-src-0.6.0-rc2\src\lib_json\json_writer.cpp : fatal error C1083: Cannot open compiler generated file: '../../build/vs71/release/lib_json\json_writer.asm': No such file or directory

Google only returned a handful of Japanese links with no solution. I'd appreciate some help solving this problem.

I fixed it like so:
1) go under lib_json -> Properties -> Configuration Properties -> C/C++ -> Output Files -> Assembler Output
2) change it to No Listing

recompile and you're done :)

P.S. I'm using Visual Studio 2010

相关文章

  jsonp需要在页面中添加一个<script>元素,由该元素来从其他服务器加载json数据。 <body&g...
<script> var testApi = "地址"; $.ajax({ url:testApi,//可以不是本地域名 type:‘post...
总是有人会遇到跨域问题,然后有个jsonp的解决方案,MVC中代码如下: public class JsonpResult : Syst...
最近开发中遇到调用第三方web_api的功能,后端在处理json数据时使用fastjson来做反序列化,由于调用api...
JSON全称为JavaScript ObjectNotation,它是一种轻量级的数据交换格式,易于阅读、编写、解析。jsoncpp...
JsonSerializer有多个属性,用于自定义如何序列化JSON。这些也可以通过JsonSerializerSettings参数,在...