mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-02 03:39:43 -06:00
`samurai` is an alternative implementation of ninja and is a drop-in replacement. `samu --version` reports the ninja version it is compatible with.
9 lines
299 B
CMake
9 lines
299 B
CMake
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
# file Copyright.txt or https://cmake.org/licensing for details.
|
|
|
|
|
|
find_program(CMAKE_MAKE_PROGRAM
|
|
NAMES ninja-build ninja samu
|
|
DOC "Program used to build from build.ninja files.")
|
|
mark_as_advanced(CMAKE_MAKE_PROGRAM)
|