These instructions are for MSVC++ Version 8. Instructions for other versions should be similar.
devenv symphony.sln /build allThis will create both the debug and release versions of SYMPHONY. If you want to compile only one of them, type
devenv symphony.sln /build "all - debug"or
devenv symphony.sln /build "all - release"For each command, the library libSymphony.lib and the executable symphony will be created in Debug and/or Release directories. The library, together with the header files in SYMPHONY
devenv symphony.sln /make all /rebuildin order to clean and rebuild everything.
Ted Ralphs