From 8df71d3f324737a5d18ae444c13015dfdb68550b Mon Sep 17 00:00:00 2001 From: Lukas Werling Date: Sun, 23 Sep 2018 23:18:37 +0200 Subject: [PATCH] Prevent parallel groups packing with ninja For some reason, generating the groups in parallel fails frequently. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2a03394b2..66107204f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1577,6 +1577,7 @@ if(NOT C4GROUP_TOOL_ONLY) MAIN_DEPENDENCY ${CMAKE_CURRENT_SOURCE_DIR}/planet/${group} DEPENDS "${native_c4group}" VERBATIM + USES_TERMINAL # Hack: prevent parallel execution (for ninja), c4group tends to fail otherwise ) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${group} DESTINATION share/games/openclonk) endif()