Saturday, May 2, 2020

Conversion between CMakeList and Visual Studio Solution

Conversion between CMakeList and Visual Studio Solution

Convert Visual Studio solution file to CMakeList file

Bellow the solution Github repository
https://github.com/pavelliavonau/cmakeconverter

pip install cmake-converter
cmake-converter -s <path/to/file.sln>

Convert CMakeLists to Visual Studio solution

Bellow the solution Github repository
https://cognitivewaves.wordpress.com/cmake-and-visual-studio/

mkdir _build
cd _build
cmake .. -G "Visual Studio 15 2017 Win64"

No comments:

Post a Comment