Windows 10 & 11

This section contains instructions on how to setup your development environment in Windows 10 & 11 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.

Drawing
Version should at least be 19.29.30158 for cl

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

CMake

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

Version should be 4.0.3 for cmake

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.12.1 for ninja

Git

Download and install latest git.

Version should at least be 2.40.1 for git

Perl

Download and install latest Perl, needed for Qt compilation.

Version should at least be 5.40.2.1 for perl

QtCreator

Follow the instructions below to setup the QtCreator IDE:

  1. Download qtcreator-windows-x64-msvc-10.0.1.7z and unzip to C:\Qt\QtCreator

  2. Download qtcreatorcdbext-windows-x64-msvc-10.0.1.7z and unzip to C:\Qt\QtCreator such that you have C:\Qt\QtCreator\lib\qtcreatorcdbext64

  3. Optional: To make accessing Qt Creator easier, navigate to C:\Qt\QtCreator\bin and launch qtcreator.exe. It may take some time to open the first time. Once it's open, you can pin the application to the taskbar for quicker access in the future.

OpenSSL

Since OpenSSL is required for Qt compilation, follow the instructions below to compile and install it:

Qt

Once you've completed all the steps in the sections above, compile and install Qt using the following command:

Version should be 5.15.17 for Qt

Last updated