Hello,
I have a big problem to add compilation options with the compiler intel fortran +msvc .
When I add compilation options, they are not taken into account in visual studio (see picture). A certain number of options are put in “additional Option”.
2021-02-11 11_18_53-Matisse - Microsoft Visual Studio|690x250
in my code, I wrote :
list(APPEND f_compile_flags /names:lowercase /iface:cref /assume:underscore /libs:static /INCREMENTAL:NO /assume:byterecl /Qinit:zero /MT)
target_compile_options(ck_io_fortran PRIVATE ${f_compile_flags})
We can notice that /iface:cref is taken into account but not the other options. What is my error?