How to change active build configuration in Delphi?

Whenever I compile, create or run a project, it outputs the exe file to the Debug \ Win32 folder, so I think it is in debug mode.

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

But I do not know how to switch to release. When I change combos for release, debug is still active.

+6
source share
1 answer
  • Open the project manager from the "View" menu or use the shortcut Ctrl + Alt + F11 .
  • Locate the node assembly configuration in the tree of the project manager tree and open it.
  • Double click Release.

enter image description here

The configuration of the active assembly is indicated in bold text in the project manager.

+13
source

Source: https://habr.com/ru/post/912924/


All Articles