cmake-variables(7) ****************** This page documents variables that are provided by CMake or have meaning to CMake when set by project code. For general information on variables, see the :ref:`Variables ` section in the cmake-language manual. .. note:: CMake reserves identifiers that: * begin with ``CMAKE_`` (upper-, lower-, or mixed-case), or * begin with ``_CMAKE_`` (upper-, lower-, or mixed-case), or * begin with ``_`` followed by the name of any ``CMake Command``. Variables that Provide Information ================================== CMAKE_AR -------- Name of archiving tool for static libraries. This specifies the name of the program that creates archive or static libraries. CMAKE_ARGC ---------- Number of command line arguments passed to CMake in script mode. When run in :ref:`-P