git repository by David Heffernan – sets environment variable DelphiProjectCompileMode to the build type
Posted by jpluimers on 2018/01/25
Interesting repository https://github.com/davidheff/DelphiProjectCompileMode in a response to
[WayBack] I’m trying to use Pre-/Post-Build-Events (Delphi 10.1 Berlin, if that matters). Is there a variable, parameter, option etc to distinguish between a “make” and a “build”… – Achim Kalwa – Google+
This requires an expert as Delphi doesn’t do it out of the box, so I was glad this expert solves that: davidheff/DelphiProjectCompileMode: Delphi IDE add in that sets an environment variable to indicate which compile mode (make, build, etc.) was used to start a compile action
It sets the DelphiProjectCompileMode variable to a value depending on the TOTACompileMode:
cmOTAMake -> Make
cmOTABuild -> Build
cmOTACheck -> Check
cmOTAMakeUnit -> MakeUnit
otherwise -> Unrecognised
–jeroen






Leave a comment