On Windows, with Intel OneAPI (mostly Fortran) and Visual Studio. Does anyone know how to convert Visual Studio 's sln file(the solution file) to cmake or Makefile?
I tried cmake-converter, https://github.com/pavelliavonau/cmakeconverter
however, it seems by default cannot catch compile flags such as
/QxHost
/heap-arrays0
and some linking flags such as
/SUBSYSTEM:CONSOLE
/STACK:2147483647,2147483647
/LARGEADDRESSAWARE
I mean I can write Makefile on Windows from my Visual Studio 's solution, but is there an automatic tool which can simply convert the sln file to a cmake file or makefile?