diff --git a/Scripts/developer_scripts/create_cgal_test_with_cmake b/Scripts/developer_scripts/create_cgal_test_with_cmake index 5a1edb2d526..1b829d339b6 100755 --- a/Scripts/developer_scripts/create_cgal_test_with_cmake +++ b/Scripts/developer_scripts/create_cgal_test_with_cmake @@ -140,6 +140,7 @@ if [ \$# -ne 0 ] ; then compile_and_run \$file done else + echo "Run all tests." EOF for file in `ls *.C *.cpp 2>/dev/null | sort` ; do if [ -n "`grep '\' $file`" ] ; then diff --git a/Surface_reconstruction_3/demo/Surface_reconstruction_3/CMakeLists.txt b/Surface_reconstruction_3/demo/Surface_reconstruction_3/CMakeLists.txt new file mode 100644 index 00000000000..2f973c2d871 --- /dev/null +++ b/Surface_reconstruction_3/demo/Surface_reconstruction_3/CMakeLists.txt @@ -0,0 +1,20 @@ +project(Surface_reconstruction_3) + +set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true) + +file( GLOB list "*" ) + +foreach( entry ${list} ) + + if ( IS_DIRECTORY ${entry} ) + + if ( EXISTS ${entry}/CMakeLists.txt ) + message( STATUS "Configuring ${entry} demo" ) + add_subdirectory( ${entry} ) + else() + message( STATUS "Skipping ${entry} demo" ) + endif() + + endif() + +endforeach()