Click here to Skip to main content
15,881,882 members
Articles / Desktop Programming / MFC
Article

Build Manager AddIn [VC 6.0]

Rate me:
Please Sign up or sign in to vote.
4.00/5 (3 votes)
27 Jul 20032 min read 60.3K   1.1K   27   9
Enhancement of the AutoBld sample AddIn

Introduction

Sometimes development projects grow huge. You might have multiple workspaces with project dependencies and pragma-linking requiring a specific build order.

This little AddIn lets you define an arbitrary build order for your projects.

Background

The code is based on the sample AddIn called AutoBld that comes with VC6. The main enhancement is that you now can change the build order for each project whereas the AutoBld AddIn only allows to set up a build order for Workspaces.

Installation

Simply put the binary into your %MSDevDir%\AddIns folder and enable it in the Tools | Customize | AddIns & Macros dialog.

Usage

The AddIn installs a toolbar with two icons.

The first button "Configure" opens the configuration dialog:

Configuration Dialog

The configuration dialog lets you specify mail settings to execute when a project or configuration has finished building. You can also chose to close DevStudio, Log off or shut the computer down after all comfigurations have finished building.

Through the "Projects To Build" you can specify the projects that will be built for each configuration. That is also where you can set up the order in which the projects will be built.

Projects Dialog

The second button "Run" lets you choose the build settings:

Build Dialog

Chose the build type and enable the configurations you wish to build, then hit OK to start the build process. 

Implementation

There is one subtlety to the implementation: After the Build command is issued to DevStudio via its IApplication interface you can watch the output window and see that the project has long finished building. Nevertheless, DevStudio won't send the BuildFinished event - no matter how long you wait. The current implementation tries to force the dispatching of the BuildFinish event by re-issuing the Build command for the "hung" project. If anyone could point me to a better strategy I would surely appreciate it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralNice tool. Pin
kranthikrl8-Oct-03 12:36
kranthikrl8-Oct-03 12:36 
GeneralRe: Nice tool. Pin
Roman Keskenti [SmoCoder]9-Oct-03 6:57
Roman Keskenti [SmoCoder]9-Oct-03 6:57 
GeneralMicrosoft eMebedded Visual C++ 3.0 support Pin
Serge R29-Jul-03 2:41
Serge R29-Jul-03 2:41 
QuestionHow about time schedule? Pin
Paul Selormey28-Jul-03 14:06
Paul Selormey28-Jul-03 14:06 
AnswerRe: How about time schedule? Pin
Roman Keskenti [SmoCoder]29-Jul-03 1:28
Roman Keskenti [SmoCoder]29-Jul-03 1:28 
QuestionEmail ? Pin
Jonathan de Halleux28-Jul-03 13:23
Jonathan de Halleux28-Jul-03 13:23 
AnswerRe: Email ? Pin
Roman Keskenti [SmoCoder]28-Jul-03 13:49
Roman Keskenti [SmoCoder]28-Jul-03 13:49 
AnswerRe: Email ? Pin
Paul Selormey28-Jul-03 13:54
Paul Selormey28-Jul-03 13:54 
AnswerRe: Email ? Pin
rschuler29-Jul-03 5:58
rschuler29-Jul-03 5:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.