From 3db3197598f1f83146c6d435397ce0477129aeda Mon Sep 17 00:00:00 2001 From: Stian Skjelstad Date: Thu, 24 Jan 2019 20:26:32 +0100 Subject: [PATCH] If COIN3D is not found with pkg-config, but with manual search, the only output seen on the screen is an error message. Add a success-message! --- cMake/FindCoin3D.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cMake/FindCoin3D.cmake b/cMake/FindCoin3D.cmake index 9d5898cc34..9dc107b76e 100644 --- a/cMake/FindCoin3D.cmake +++ b/cMake/FindCoin3D.cmake @@ -104,5 +104,6 @@ ENDIF (WIN32) IF(COIN3D_LIBRARIES) SET( COIN3D_FOUND "YES" ) + message("COIN3D Libraries found") ENDIF(COIN3D_LIBRARIES)