mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-14 02:59:53 -06:00
Provide a way for custom commands and targets to set the pool variable of the ninja build statement. Setting `JOB_POOL` is not compatible with `USES_TERMINAL`, which implies the `console` pool. The option is silently ignored with other generators. Closes: #18483
3 lines
131 B
CMake
3 lines
131 B
CMake
add_custom_command(OUTPUT x COMMAND y USES_TERMINAL JOB_POOL z)
|
|
add_custom_target(CustomTarget COMMAND y USES_TERMINAL JOB_POOL z)
|