Hi,<br><br>I am trying to use Intel ifort on Linux to compile source code that uses the extension .F95.  By default, ifort will not compile files with this extension.  To allow the compilation, the name of the source file must be preceded by -Tf (treat the next option as fortran source). While I know how to modify the Fortran flags, I don&#39;t know how to add the &#39;-Tf&#39; flag that is directly in front of the source file name (and after the -c).  Can anyone point me in the right direction?<br>
<br>My flags.mak has the following (path and file names changed to protect the innocent):<br><br>Fortran_FLAGS = -warn -free -fpp -implicitnone -openmp -mia32 -axSSSE3 -O2 -inline-level=2  -funroll-loops -DNDEBUG -I/path/to/include/dir -I/path/to/include/dir2<br>
<br>When I run make &#39;VERBOSE=1&#39;, I see:<br><br>$ /opt/intel/Compiler/11.1/059/bin/intel64/ifort  -o CMakeFiles/mydir.dir/myfile.o -warn -free -fpp -implicitnone -openmp -mia32 -axSSSE3 -O2
-inline-level=2  -funroll-loops -DNDEBUG -I/path/to/include/dir
-I/path/to/include/dir2 -c /path/to/src/myfile.F95<br>ifort: warning #10147: no action performed for specified file(s)<br><br>What I need is (added -Tf):<br><br>$ /opt/intel/Compiler/11.1/059/bin/intel64/ifort  -o myfile.o -warn -free -fpp -implicitnone -openmp -mia32 -axSSSE3 -O2
-inline-level=2  -funroll-loops -DNDEBUG -I/path/to/include/dir
-I/path/to/include/dir2 -c -Tf /path/to/src/myfile.F95<br><br>How can I obtain this result with CMake?<br><br>TIA,<br><br>-kt<br><br>