From 888bf8520189f376c23c0bc54f59d06c222b1b05 Mon Sep 17 00:00:00 2001 From: Pierre Moreau Date: Mon, 24 Aug 2020 22:26:50 +0200 Subject: [PATCH] Do not silence the compilation of assimp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit assimp does take some time to build, so it can be good to see its progress. This is actually needed for the Travis builds on macOS as building assimp takes almost 20 minutes on its own, triggering an automatic timeout of the job after 10 minutes without any output. --- CMake/InstallAssimp.cmake | 2 -- 1 file changed, 2 deletions(-) diff --git a/CMake/InstallAssimp.cmake b/CMake/InstallAssimp.cmake index 530715a8..f8f061c1 100644 --- a/CMake/InstallAssimp.cmake +++ b/CMake/InstallAssimp.cmake @@ -52,8 +52,6 @@ if (NOT assimp_FOUND) COMMAND ${CMAKE_COMMAND} --build ${assimp_BINARY_DIR} --config Release --target install - OUTPUT_VARIABLE stdout - ERROR_VARIABLE stderr RESULT_VARIABLE result ) if (result)