Check for CMakeLists.txt also in demos

This commit is contained in:
Laurent Rineau 2018-10-16 12:33:39 +02:00
parent 727cb4336c
commit a7c5c92f2f
10 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ fi
#check cmake scripts of tests, examples are present
echo '.. Checking if all CMakeLists.txt are present...'
for i in `ls -d ^build*/examples/*/ ^build*/test/*/`; do
for i in `ls -d ^build*/examples/*/ ^build*/test/*/ ^build*/demo/^(icons|resources)/`; do
if ! [ -f $i/CMakeLists.txt ]; then
echo "Error: $i/CMakeLists.txt does not exist!"
exit 1

View File

@ -2,7 +2,7 @@
# This is the CMake script for compiling a CGAL application.
project( Three_test )
project( Three_Demo )
cmake_minimum_required(VERSION 2.8.10)