I use the following code in my settings classes to determine what to use. But now I have run in to the problem that I had forgotten to copy the correct .INC file to my project folder and that give me an AV since none of the defines are found. How do I make sure that if none of the defines are found then U_SettingsConnIni are always in the uses section
uses
Dialogs, Forms, SysUtils,
{$IFDEF SETTINGSINI}
U_SettingsConnIni,
{$ENDIF}
{$IFDEF SETTINGSREG}
U_SettingsConnReg,
{$ENDIF}
{$IFDEF SETTINGSXML}
U_SettingsConnXml,
{$ENDIF}
U_SectionNames;