Registriert seit: 20. Jan 2006
Ort: Lübbecke
11.475 Beiträge
Delphi 12 Athens
|
AW: Abfrage ob gerade für Delphi-Package kompiliert wird
31. Mär 2017, 23:01
Ich hatte, bevor ich geantwortet habe, noch nach "IsPackage" gesucht, da ich sowas im Kopf hatte (Einheitliche Benennung war noch nie "Delphi"'s Stärke)
Aber man ist auf dem besten Weg:
Delphi-Quellcode:
var
ModuleIsLib: Boolean; { True if this module is a dll (a library or a package) }
ModuleIsPackage: Boolean; { True if this module is a package }
ModuleIsCpp: Boolean; { True if this module is compiled using C++ Builder }
|