- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dear All,
I have just joined the Intel community, and I am trying to gain some experience in coding in Fortran.
My question might be very simple but I was just wondering how multiple .F90 files cam be combined to generate an EXE file and VFPROJ file in the end.
I do in advance thank you so much for advice and assistance.
Kind regards,
Oktay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
A simple way to do this in Visual Studio, once you reach the full VS interface, is:
- File > New > Fortran project from existing code...
- Click the Add button to select a folder containing your Fortran sources. Click Next.
- On the next screen, select Application as the project type and click Finish.
With this you will get ALL of the Fortran sources in that folder.
A better way, assuming you have VS2019, is open VS and:
- Click "Create a new project"
- In the language dropdown, select Fortran.
- In the project type dropdown, select Console
- Click "Empty Project" and click Next.
- Enter a project name and click Next.
- Right click on Source Files, then select Add > Existing Items. Select your Fortran source(s) and click Add.
Now you have a project you can build.
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
A simple way to do this in Visual Studio, once you reach the full VS interface, is:
- File > New > Fortran project from existing code...
- Click the Add button to select a folder containing your Fortran sources. Click Next.
- On the next screen, select Application as the project type and click Finish.
With this you will get ALL of the Fortran sources in that folder.
A better way, assuming you have VS2019, is open VS and:
- Click "Create a new project"
- In the language dropdown, select Fortran.
- In the project type dropdown, select Console
- Click "Empty Project" and click Next.
- Enter a project name and click Next.
- Right click on Source Files, then select Add > Existing Items. Select your Fortran source(s) and click Add.
Now you have a project you can build.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dear Steve,
Thank you so much! Much appreciated!
Kind regards,
Oktay

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page