Windows 10

This section contains instructions on how to setup your development environment in Windows 10 in order to compile the Skydel Plug-ins examples.

MSVC

Download latest Build Tools for Visual Studio 2019 online installer and install C++ build tools.

Version should at least be 19.29.30148 for cl

Please note that the version in the execution path of cl might be different on newer versions.

C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.29.30133\bin\Hostx64\x64\cl.exe
> Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30148 for x64

Ninja

  • Download and unzip ninja-win.zip to Program Files / ninja-win

  • From the search bar, search for Edit the system environment variables

  • Select Envrionment Variables...

  • Select Path in System variables and select Edit...

  • Select Browse... and find the folder Program Files / ninja-win (where you unziped ninja-win.zip)

  • After those steps, ninja should be accessible from anywhere

Version should be 1.10.1 for ninja
ninja --version
> 1.10.1

Qt

Download the latest online installer named qt-unified-windows-x64-online.exe and install:

From an elevated PowerShell
.\qt-unified-windows-x64-4.4.1-online.exe install qt.qt5.5152.win64_msvc2019_64 qt.tools.qtcreator `
    --root C:\Qt `
    --auto-answer telemetry-question=No --accept-licenses --default-answer --accept-obligations --confirm-command `
    --email QT_EMAIL `
    --pw QT_PW

Update the email (QT_EMAIL) and password (QT_PW) accordingly

CMake

Download and install CMake. Make sure to add CMake to the system PATH.

Version should be 3.22.1 for cmake
cmake --version
> cmake version 3.22.1

Git

Download and install latest git.

Version should at least be 2.40.0 for git
git --version
> git version 2.40.0.windows.1

Last updated