

- #CMAKE SET VARIABLE TO TRUE GENERATOR#
- #CMAKE SET VARIABLE TO TRUE ARCHIVE#
- #CMAKE SET VARIABLE TO TRUE PATCH#
- #CMAKE SET VARIABLE TO TRUE FULL#
#CMAKE SET VARIABLE TO TRUE FULL#
This the full path to the build directory that is currently being processed by cmake.

Since these values are evaluated by the native build system, this variable is suitable only for use in command lines that will be evaluated at build time. On Makefile generators this evaluates to "." because there is only one configuration in a build tree.
#CMAKE SET VARIABLE TO TRUE PATCH#
This is stores the patch version of CMake used to write a CMake cache file. CMAKE_CACHE_PATCH_VERSION: Patch version of CMake used to create the CMakeCache.txt file.This is stores the minor version of CMake used to write a CMake cache file. CMAKE_CACHE_MINOR_VERSION: Minor version of CMake used to create the CMakeCache.txt file.This is stores the major version of CMake used to write a CMake cache file. CMAKE_CACHE_MAJOR_VERSION: Major version of CMake used to create the CMakeCache.txt file.This is the full path to the directory that has the CMakeCache.txt file in it. CMAKE_CACHEFILE_DIR: The directory with the CMakeCache.txt file.This can be useful for adding special flags and commands based on the final build environment.


#CMAKE SET VARIABLE TO TRUE GENERATOR#
If the generator selected was Visual Studio 6, the CMAKE_MAKE_PROGRAM will be set to msdev, for Unix makefiles it will be set to make or gmake, and for Visual Studio 7 it set to devenv. This variable is set to the program that will be needed to build the output of CMake. CMAKE_BUILD_TOOL: Tool used for the actual build process.For an in-source build, this would be the same as CMAKE_SOURCE_DIR. This is the full path to the top level of the current CMake build tree. CMAKE_BINARY_DIR: The path to the top level of the build tree.
#CMAKE SET VARIABLE TO TRUE ARCHIVE#
This specifies name of the program that creates archive or static libraries.
