Dear all,
On Windows, with Intel OneAPI 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,
It is not bad, 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?
Thanks much in advance!