build 不通过,是怎么回事呢???
文件aaa.c
里面有:
#include bbb.h
...
void aaa::OnButton1()
{
// TODO: Add your control notification handler code here
uiprocess();
}
....
文件bbb.c
中:
#include bbb.h
...
uiprocess()
{
...
}
...
文件bbb.h
中:
...
uiprocess();
...
编译能通过,但是build的时候会有错误提示:
:fatal error C1010: unexpected end of file while looking for precompiled header directive
Error executing cl.exe.
Creating browse info file...
BSCMAKE: error BK1506 : cannot open file '.\Debug\bbb.sbr': No such file or directory
Error executing bscmake.exe.
aaa.exe - 2 error(s), 0 warning(s)
请指教~~~