Jump to content
Sign in to follow this  
Die Holländer

How to get Debug AND Release directories after building a project

Recommended Posts

Hello,

 

I can't find in the IDE a way to set the compiler/builder to create/use the both directories when I switch between Release and Debug Build.

In one of my projects it's going ok. I switch from Release build configuration to Debug and after build/compile there are two directories (Release and Debug) with the executable.

But one of my projects this is not working and the switch is always compile/build into the Debug directory. When I switch to Release Build Configuration it is also using the Debug directory.

 

What do I have to change in the IDE for this project, so that it is using the proper directory when switching? 

Share this post


Link to post

Project Options -> Building -> Delphi Compiler -> Menu Target Release configuration -> Output directory = .\$(Platform)\$(Config)

Share this post


Link to post

The configurations inherit values - can it be that your release version of the "failing" app has an override?

Share this post


Link to post

use

Project Options -> Building -> Delphi Compiler -> ALL CONFIGURATION 32 or 64 or ANDROID or Whatever

and use      .\$(Platform)\$(Config)      as said above

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×