From 7fe5413fe34ef3cd8dd6640c2e2943f74f32d5d7 Mon Sep 17 00:00:00 2001 From: Fernando Cacciola Date: Thu, 4 Sep 2008 13:26:39 +0000 Subject: [PATCH] Removed pending 'Skipping' messages --- Installation/demo/CMakeLists.txt | 2 -- Installation/examples/CMakeLists.txt | 2 -- 2 files changed, 4 deletions(-) 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()