Skip to content

msvscpp convert script

Joachim Metz edited this page Sep 2, 2017 · 3 revisions

msvscpp-convert.py is a Python script to convert Visual Studio solution and project files.

Running the script

Generating Visual Studio solution and project files from autotools configurations

To run:

PYTHONPATH=. python scripts/msvscpp-convert.py --output-format 2008 .

Converting Visual Studio solution and project files to a different version

To run:

PYTHONPATH=. python scripts/msvscpp-convert.py --output-format 2010 msvscpp/libyal.sln

Options

  • --extend-with-x64 extend the solution and project files with an X64 build platform
  • --no-python-dll skip adding the Python module DLL to the solution and project files
  • --python-path PATH set the path where Python is installed, default is C:\Python27