cmake/Modules/CMakeNinjaFindMake.cmake

19 lines
754 B
CMake
Raw Normal View History

2012-04-19 19:04:21 +03:00
#=============================================================================
# Copyright 2011 Kitware, Inc.
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
# (To distribute this file outside of CMake, substitute the full
# License text for the above reference.)
2015-04-27 22:25:09 +02:00
find_program(CMAKE_MAKE_PROGRAM
NAMES ninja-build ninja
2012-04-19 19:04:21 +03:00
DOC "Program used to build from build.ninja files.")
2013-03-16 19:13:01 +02:00
mark_as_advanced(CMAKE_MAKE_PROGRAM)