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

how to compile Intel Fortran windowing application in VS 2005?

kryshtalex
Beginner
866 Views
I set up VS 2005 and Fortran Commpiler 10.1 Trial. I create Intel fortran windowing application in VS 2005, when debugged it I've got an error "Cannot debug because debug... target is mmissing". What did I do the wrong way?
0 Kudos
1 Reply
Steven_L_Intel1
Employee
866 Views
It sounds as if you selected a non-executable project type, such as DLL or static library. When you build, does it create an EXE?

Right click on the project name (next to the white F in a blue block), select Properties, then Debugging. In the Command field, it should say: "$(TargetPath)" There should be a Linker property page with an Output File property of "$(OutDir)$(ProjectName).exe".

If you do not see these, create a new Intel Fortran project and make sure that you select Windowing Application and the appropriate sub-project type.
0 Kudos
Reply