These instructions are for MSVC++ Version 8. Instructions for other versions should be similar.
 v8
directory and type
v8
directory and type 
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
 include
include
 , can then be 
used to call SYMPHONY from any C/C++ code. The API for calling SYMPHONY is 
described in Section 3.3.
, can then be 
used to call SYMPHONY from any C/C++ code. The API for calling SYMPHONY is 
described in Section 3.3.
 subdirectory. This should open a Window in
which the interactive solver will appear. Type 
help or 
? to see
a list of available commands or see Chapter
3 for instructions on using the interactive solver.
 subdirectory. This should open a Window in
which the interactive solver will appear. Type 
help or 
? to see
a list of available commands or see Chapter
3 for instructions on using the interactive solver.
devenv symphony.sln /make all /rebuildin order to clean and rebuild everything.
Ted Ralphs