错误C1083:无法打开源文件:“stdafx.cpp':没有这样的文件或目录

时间:2016-12-08 16:41:40

标签: c++ visual-studio

我有上述错误并且已经遵循了所有解决方案,但没有解决。

这是我的stdafx.h文件。我在目标目录中有它,我可以看到文件,完整路径到那里。另外,我创建了一个win32项目。为什么我的代码不起作用?

spy

实际代码:

// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//

#pragma once

#include "targetver.h"

#include <stdio.h>
#include <tchar.h>



// TODO: reference additional headers your program requires here

1 个答案:

答案 0 :(得分:7)

记录下来,当我从Windows 10的Ubuntu shell中使用git克隆存储库时遇到了这个问题。

在我从Windows shell的git中使用git将存储库克隆到其他位置之后,问题消失了,解决方案构建良好。

问题在于,构建脚本正在使用大写名称(C:\GIT\LIBRARYX\SRC\)的文件夹中查找“ stdafx.cpp”,如果使用Ubuntu Ubuntu的git克隆了解决方案,则此路径不起作用。