2014-10-20 65 views
0

我正在將VC++ 06項目遷移到Visual Studio 2012. 編譯時出現錯誤。將VC++ 06遷移到Visual Studio 2012:從編譯中刪除hcw

enter image description here

1> Copying contents file... 
1> the specified file is not found 
1> Making help include file... 
1> Making help file... 
1> The system cannot find the file hcw. 
1>hlp\MyProject.hpj(1): error : 
1> the specified file is not found 

我刪除的文件夾HLP(它得到了.hpj文件),Makefile文件(.MAK),但它仍然希望去實現它。

爲什麼?如何在沒有HTML幫助項目的情況下構建我的項目?我想關注this,但它不起作用。

回答

2

我找到了解決方案。

我編輯.dsp文件(VC++ 6項目)並刪除HTML幫助行聲明。 當我從.dsp添加現有項目時,它會自動加載該配置。即使我刪除了Makefile或hlp文件夾。

1

你應該打開了新版本的Visual Studio中的.dsw文件,建設項目前,打開vxcproj,找到量身定製,尋求幫助(搜索「HJP」字)

刪除此部分從vxcproj並編譯該項目。

相關問題