mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 07:08:38 -05:00
bc43398e72
Introduces `BUILD_JOB_SERVER_AWARE` option to `ExternalProject_Add` and `JOB_SERVER_AWARE` to `ExternalProject_Add_Step`. When using an explicit `BUILD_COMMAND` or `COMMAND`, the generated commands won't use `$(MAKE)` thus failing to connect to the outer make's job server. These new options enable explicit job server integration. Co-authored-by: Brad King <brad.king@kitware.com> Fixes: #16273
5 lines
118 B
CMake
5 lines
118 B
CMake
cmake_minimum_required(VERSION 3.27)
|
|
project(Foo NONE)
|
|
|
|
add_custom_target(drive ALL COMMAND ${CMAKE_COMMAND} -E true)
|