0

Error 1 fatal error C1083: Cannot open source file: 'FpDebug/BalanceGrabber.pch': No such file or directory c1xx

Vamsi Emani
  • 10,072
  • 9
  • 44
  • 71
Benit
  • 1

3 Answers3

2

Is one of your cpp files configured to generate the precompiled header? I think this is missing. In the project settings/makefile or whatever you use you have to create the pch (precompiled header) first!

jdehaan
  • 19,700
  • 6
  • 57
  • 97
0

Check your path: specifically, does FpDebug/BalanceGrabber.pch exist?

Or can you specify an absolute path for that .pch file? i.e., C:\development\FpDebug/BalanceGrabber.pch

Graviton
  • 81,782
  • 146
  • 424
  • 602
0

The error message is given because a source file is not found during compilation/linking. You nee to check the spelling of the names and the search paths. And of course, check if the file is at the requested location.

Toon Krijthe
  • 52,876
  • 38
  • 145
  • 202