
compile different source files with different exception handling
I assume you're using the IDE based on the group you're posting in. You can
also set settings on a per file basis within the IDE. Just right-click on
the file and FileView and choose Settings.
Jeff
Quote:
> I myself found the reply by experimenting...
> modify .dsp file to specify specific exception handling
> for the specific file...for example...
> SOURCE=.\GrungyTask.cpp
> !IF "$(CFG)" == "Test - Win32 Release"
> # ADD CPP /EHa
> !ELSEIF "$(CFG)" == "Test - Win32 Debug"
> !ENDIF
> # End Source File
> # Begin Source File
> Vikram
> >-----Original Message-----
> >Hello,
> >John Robbins book "Debugging Applications" in
> >chapter "Crash Handlers" mentions that ...
> >"Fortunately, you don't have to enable asynchronous
> >exceptions projectwide—you can compile different source
> >files with different exception handling and link them
> >together without problems"
> >I tried changing settings for a particular file using
> >Project Settings dialog...but the Source File Options
> edit
> >control is in read only mode.
> >How do I "compile different source files with different
> >exception handling".
> >Thanks,
> >Vikram
> >.