Build using DCC32.exe in delphi

Hello, I am creating a delphi project using the following command:

Command: dcc32.exe project.dpr d:\exe_folder

The above command works well, and I can pin the exe to the output folder. But when I build the same project through the IDE, then with each assembly, the build number increases, because there is an option "Auto Increase Build Number", which I checked. But by doing this through the command line, the build number does not increase. Any option to change assembly version / version information through the command line

Thank..

+5
source share
3 answers

dcc32.exe . ( ) *.res, IDE. IDE, RC script , , script. bat :

  • ,
  • RC script brcc32.exe( RC RC2, ws ).
  • dcc32.exe .res

P.S. RES :

{$R "yourversioninfofile.res"} 
+8

, IDE. , script , .

IDE, :

  • script .res, IDE.
  • .
  • .res.
  • .

, , , .res. . .

+4
+1

All Articles