Erstell eine Textdatei "Icon.rc":
Code:
100 ICON DISCARDABLE "AppIcon.ico"
Die Datei wandelst Du in eine .res um (Eingebeaufforderung oder Batchdatei):
Und bindest sie ins Programm ein:
Delphi-Quellcode:
program Project1;
{$APPTYPE CONSOLE}
{$R Icon.res}
uses
Windows;
begin
end.