Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29249 Discussions

Calling Visual Studio from a batch file to build a DLL

mattsdad
Beginner
434 Views
Since Visual Studio 2005 has dropped the feature to export a Makefile, is it possible to call Visual Studio from a batch file to perform a build. (I need to make a dynamic library from a batch file.)
0 Kudos
1 Reply
Steven_L_Intel1
Employee
434 Views
Yes. From the command line, type "devenv /?" to see the format of the command and the various options. For example, you might have:

devenv mysolution.sln /build Debug

to build the solution's Debug configuration.
0 Kudos
Reply