Working with Visual Studio 2008 Pro, with Intel Fortran compiler v11, on Windows 7 x64.

I have an Intel Visual Fortran project set up with all the fortran source files. I wish to gradually replace all these subroutines with C/C++ (actually cuda -- bonus points). Simply right clicking on source files in the solution explorer and "add existing item" will put a .cpp or .c or cuda file in the list... but it never gets compiled. Thus any INTERFACE to C code written into the fortran code always fails on the link step.

How does one get a mixed-language project like this? Google has failed me, and all I find are descriptions of the actual interface code, with no instructions on how to implement the visual studio build system.

Thanks in advance.

link|improve this question
2  
You're adding .c / .cpp files in a fortran project, if I've not misunderstood ? A solution can contain projects in several languages but a project must be in one language. – ldigas Oct 17 '09 at 18:33
Ah, stupid mistake, thank you. I probably should've read those last two paragraphs in the Visual Fortran doc, huh? – Aurelius Oct 17 '09 at 19:08
1  
Here's an example of setting up a mixed language solution for VC++ 2010 and CUDA. It might be of some help. ademiller.com/blogs/tech/2011/03/… – Ade Miller Mar 8 '11 at 16:08
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.