Link to home
Start Free TrialLog in
Avatar of kdkd
kdkd

asked on

Build Environment

Is there a way to automatically get a Visual C++ Project out of Visual Source Safe ( with its dependent projects ), then to start a buildprocess autmatically.
It has to run e.g. in the night in batch on a NT Server. Any prototypes? Working examples?
Avatar of MatthiasLange
MatthiasLange

First u need a MakeFile (Project/Export Makefile in VC++5/6)
Add it to SourceSafe.
Get all the project files with command line of SS:
    SS Get $/<project path> (and some parameters see SS help)
Build the project with
    NMAKE <makefile> CFG="<config>"


Avatar of kdkd

ASKER

O.k. but there's still a manual step: I have to create the makefile manually. It has to be in batch!!!!! What if the makefile in Sourcesafe is not updated by a developer but the only .dsp or the .dsp?
ASKER CERTIFIED SOLUTION
Avatar of MatthiasLange
MatthiasLange

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of kdkd

ASKER

O.k. thanx a lot