How do I fix warning MSB8012 in a static library project in Visual C++ 2010?

后端 未结 3 1104
温柔的废话
温柔的废话 2020-12-03 05:27

I am trying to convert a static library from VC++2008 to VC++2010, and I get these warnings about TargetPath and TargetName. I have had a look into my configuration and I\'m

3条回答
  •  借酒劲吻你
    2020-12-03 06:05

    I had this problem but could not find a valid answer here in SO, eventually I found out that it was solved by fixing the Intermediate Directory from ".\Debug" to "..\Debug", and ".\Release" to "..\Release" in each build configuration.

    I'm sorry this is only worth for a comment but I don't have enough points to add comments to other people's posts.

提交回复
热议问题