diff --git a/Installation/demo/CMakeLists.txt b/Installation/demo/CMakeLists.txt index f998de1107b..40268f37f83 100644 --- a/Installation/demo/CMakeLists.txt +++ b/Installation/demo/CMakeLists.txt @@ -11,8 +11,6 @@ foreach( entry ${list} ) if ( EXISTS ${entry}/CMakeLists.txt ) message( STATUS "Configuring ${entry} demo" ) add_subdirectory( ${entry} ) - else() - message( STATUS "Skipping ${entry} demo" ) endif() endif() diff --git a/Installation/examples/CMakeLists.txt b/Installation/examples/CMakeLists.txt index fcd051f476f..5525789cb8d 100644 --- a/Installation/examples/CMakeLists.txt +++ b/Installation/examples/CMakeLists.txt @@ -11,8 +11,6 @@ foreach( entry ${list} ) if ( EXISTS ${entry}/CMakeLists.txt ) message( STATUS "Configuring ${entry} example" ) add_subdirectory( ${entry} ) - else() - message( STATUS "Skipping ${entry} example" ) endif() endif()