From 727cb4336ce23c74c7f20125e3fcc56a0c2ee96d Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Tue, 16 Oct 2018 12:32:11 +0200 Subject: [PATCH] Create an "empty" CMakeLists.txt to fix the testsuite --- Three/demo/Three/CMakeLists.txt | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Three/demo/Three/CMakeLists.txt diff --git a/Three/demo/Three/CMakeLists.txt b/Three/demo/Three/CMakeLists.txt new file mode 100644 index 00000000000..2209285ac71 --- /dev/null +++ b/Three/demo/Three/CMakeLists.txt @@ -0,0 +1,27 @@ +# Created by the script cgal_create_cmake_script +# This is the CMake script for compiling a CGAL application. + + +project( Three_test ) + +cmake_minimum_required(VERSION 2.8.10) + +set(CMAKE_CXX_STANDARD 14) + +find_package(CGAL QUIET COMPONENTS Core ) + +if ( CGAL_FOUND ) + + include( ${CGAL_USE_FILE} ) + + include( CGAL_CreateSingleSourceCGALProgram ) + + include_directories (BEFORE "../../include") + + +else() + + message(STATUS "This program requires the CGAL library, and will not be compiled.") + +endif() +