pavelliavonau / cmakeconverter

This project aims to facilitate the conversion of Visual Studio to CMake projects.
GNU Affero General Public License v3.0
858 stars 109 forks source link

/QxHost, /heap-arrays, and some other flags seems are missing #143

Open CRquantum opened 2 years ago

CRquantum commented 2 years ago

Great project! I am using Intel OneAPI + Visual Studio 2017, on Windows 10. I tried

  1. cmake-converter -s xxx.sln
  2. cmake -S . -B build
  3. cmake --build build

However, it seems cmake-converter did not catch compile flags such as

/QxHost
/heap-arrays0

and some link flags such as

/STACK:2147483647,2147483647 
/LARGEADDRESSAWARE

It seems these flags are missing in the building stage.

I wonder am I missing something? Thanks much in advance!

pavelliavonau commented 2 years ago

Try cmake-converter -w4 -s xxx.sln For getting missing unprocessed xml nodes. Check -h for available options.