How do i fire up Visual Fortran from a command line.

How do i fire up Visual Fortran from a command line.

jct_office's picture

Progress bah humbug.

Until recently, I was using Visual Fortran 6.6. I had a nifty script which fired up, in debug mode, an existing project. The critical two command lines in the script were:

call "C:\\Program Files\\Microsoft Visual Studio\\DF98\\BIN\\dfvars"
dfdev "D:\\Projects\\Project_name.dsw"

Recently, our office migrated to Microsoft Visual Studio 2010; I am running Intel Visual Fortran Composer XE 2011. I want do same thing as before. Any help will be appreciatited.

JCT_Office

2 posts / 0 new
Last post
For more complete information about compiler optimizations, see our Optimization Notice.
Steve Lionel (Intel)'s picture

I moved your post over to the Visual Fortran for Windows forum.

Here's the replacement commands:

call "%IFORT_COMPILER12%\bin\compilervars.bat ia32"
devenv "D:\Projects\Project_name.vfproj"

Steve

Login to leave a comment.