Skip to content

saudzahirr/CMake-Build

Repository files navigation

Starting Out with CMake

CMake is a cross-platform build system that generates build program for C/C++, FORTRAN etc.

Prerequisites:

  • C/C++ compiler installed on your system
  • CMake installed on your system (Download CMake)

Build the Project:

    mkdir build
    cd build
    cmake ..  # Configure the project CMakeLists.txt
    make     # Build the project (using Makefile)