Skip to content

Commit 0e1feea

Browse files
committed
Include resources from project file
1 parent f4af383 commit 0e1feea

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

Src/CodeSnip.Caboli.dpr

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,18 @@ uses
343343
FirstRun.FmV4ConfigDlg in 'FirstRun.FmV4ConfigDlg.pas' {V4ConfigDlg},
344344
FirstRun.FmWhatsNew in 'FirstRun.FmWhatsNew.pas' {WhatsNewDlg};
345345

346-
{$R *.res}
346+
// Include resources
347+
348+
{$R *.res} // IDE generated resource file
349+
{$Resource ExternalObj.tlb} // Type library file
350+
{$Resource HTML.res} // HTML resources
351+
{$IFNDEF PORTABLE}
352+
{$Resource VCodeSnip.res} // Version information resource (normal)
353+
{$ELSE}
354+
{$Resource VCodeSnipPortable.res} // Version information resource (portable)
355+
{$ENDIF}
356+
{$Resource Resources.res} // All other resources.
357+
347358

348359
begin
349360
TThemeManager.ApplyCurrentTheme;

0 commit comments

Comments
 (0)