Note that there are some explanatory texts on larger screens.

plurals
  1. PODelphi: How to set the default project in a project group?
    text
    copied!<p>i have two projects in a project group:</p> <ul> <li>ProjectA</li> <li>ProjectB</li> </ul> <p>Whenever i open the ProjectGroup.bpg in Delphi, it always starts with the 2nd project as the active one:</p> <ul> <li>ProjectA</li> <li><strong>ProjectB</strong></li> </ul> <p>And every time i have to flip it to the the "real" project:</p> <ul> <li><strong>ProjectA</strong></li> <li>ProjectB</li> </ul> <p>How can i make <strong>ProjectA</strong> the default project that opens with the project group?</p> <hr> <h2>ProjectGroup.bpg</h2> <pre><code>#------------------------------------------------------------------------------ VERSION = BWS.01 #------------------------------------------------------------------------------ !ifndef ROOT ROOT = $(MAKEDIR)\.. !endif #------------------------------------------------------------------------------ MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$** DCC = $(ROOT)\bin\dcc32.exe $** BRCC = $(ROOT)\bin\brcc32.exe $** #------------------------------------------------------------------------------ PROJECTS = ProjectA.exe ProjectB.exe #------------------------------------------------------------------------------ default: $(PROJECTS) #------------------------------------------------------------------------------ ProjectA.exe: ProjectA.dpr $(DCC) ProjectB.exe: childfolder\ProjectB.dpr $(DCC) </code></pre> <p>See <a href="https://stackoverflow.com/questions/2493784/dunit-how-to-run-tests">DUnit: How to run unit tests</a> for the practical reason.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload