DEV Community

Arunesh Choudhary
Arunesh Choudhary

Posted on

Install CMake on Windows

I am working on a project which require me to build and compile MariaDB database. To build MariaDB, CMake is required. CMake will first verify on which operating system, it is being run, then it will create and\or copy the appropriate directories, files on the operating system.

CMake

It is an open source software under the BSD-3-Clause license. C++ compiler is required to run CMake build system. CMake is used in the software development industry for build automation, testing, packaging and installation of software.

CMake is not a build system, it creates the build system files for other operating systems, which includes support for directory hierarchy.

Let's install CMake on windows.

Download the code

https://cmake.org/download/

Choose executable from the list
At this time, the current version is 3.26.0

https://github.com/Kitware/CMake/releases/download/v3.26.0/cmake-3.26.0-windows-x86_64.msi

Install CMake from the executable

Step 1 Double click on the downloaded executable file

Step 2 Follow the instructions on the screen

cmake_installation_windows_step_1

cmake_installation_windows_step_2

Alert : Make sure to add CMake to the PATH

cmake_installation_windows_step_3

cmake_installation_windows_step_4

cmake_installation_windows_step_5

cmake_installation_windows_step_6

cmake_installation_windows_step_7

Step 2 Make sure CMake is installed on the system

Reboot your Machine.

# Command 
where cmake
# Output
C:\Program Files\CMake\bin\cmake.exe
Enter fullscreen mode Exit fullscreen mode

CMake is properly installed on your system.

Disclaimer: I have been working on a project which require me to install, configure, troubleshoot various packages on multiple Operating system. If you find any issue, please reach out to me.

Top comments (0)