Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I change active build configuration in Delphi?

Any time I compile, build or run my project it outputs the exe file into the Debug\Win32 folder, so I guess it is in debug mode.

When I go to : Project->Options I can see the debug(active)

But I don't know how to switch to release. When I change the combo to release, debug is still active.

like image 594
yarek Avatar asked Apr 11 '12 11:04

yarek


1 Answers

  1. Open the project manager from the View menu, or use the shortcut Ctrl+Alt+F11.
  2. Find the Build Configurations node in the project manager's tree view and open it up.
  3. Double click on Release.

enter image description here

The active build configuration is indicated in the project manager by boldface text.

like image 156
David Heffernan Avatar answered Sep 19 '22 08:09

David Heffernan