Error 1 fatal error C1083: Cannot open source file: 'FpDebug/BalanceGrabber.pch': No such file or directory c1xx
views:
41answers:
3
A:
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
Ngu Soon Hui
2009-10-19 06:46:07
A:
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.
Gamecat
2009-10-19 06:47:37
+2
A:
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
2009-10-19 06:49:03