Remove this directory, added by accident by #4128

See https://github.com/CGAL/cgal/pull/4128
This commit is contained in:
Laurent Rineau 2019-09-11 15:14:51 +02:00
parent d00369432b
commit dc5853cb1f
1 changed files with 0 additions and 35 deletions

View File

@ -1,35 +0,0 @@
cmake_minimum_required(VERSION 3.1...3.15)
project (Hyperbolic_triangulation_2_Demo)
# Find includes in corresponding build directories
set(CMAKE_INCLUDE_CURRENT_DIR ON)
# Instruct CMake to run moc automatically when needed.
set(CMAKE_AUTOMOC ON)
if(POLICY CMP0071)
cmake_policy(SET CMP0071 NEW)
endif()
find_package(CGAL REQUIRED QUIET OPTIONAL_COMPONENTS Core Qt5)
find_package(LEDA QUIET)
find_package(Qt5 QUIET COMPONENTS Widgets)
include_directories (BEFORE include)
if(CGAL_FOUND AND CGAL_Qt5_FOUND AND Qt5_FOUND AND (CGAL_Core_FOUND OR LEDA_FOUND))
# ui files, created with Qt Designer
qt5_wrap_ui( UIS HDT2.ui )
# qrc files (resources files, that contain icons, at least)
qt5_add_resources ( RESOURCE_FILES resources/Delaunay_triangulation_2.qrc )
# cpp files
add_executable ( HDT2 HDT2.cpp ${CGAL_Qt5_RESOURCE_FILES} ${RESOURCE_FILES} ${UIS})
add_to_cached_list( CGAL_EXECUTABLE_TARGETS HDT2 )
target_link_libraries ( HDT2 CGAL::CGAL CGAL::CGAL_Qt5 CGAL::CGAL_Core Qt5::Widgets)
else()
message(STATUS "NOTICE: This demo requires CGAL, CGAL_Core (or LEDA), and Qt5 and will not be compiled.")
endif()