Removed hand-made example cmake scripts

This commit is contained in:
Fernando Cacciola 2008-09-04 18:58:48 +00:00
parent ab07405874
commit 1fc6bcadc4
5 changed files with 2 additions and 61 deletions

2
.gitattributes vendored
View File

@ -1275,7 +1275,6 @@ Circular_kernel_2/demo/Circular_kernel_2/help/sweeper.jpeg -text svneol=unset#im
Circular_kernel_2/demo/Circular_kernel_2/help/trash.jpeg -text svneol=unset#image/jpeg
Circular_kernel_2/doc_tex/Circular_kernel_2/fig/Boolean_operation.png -text
Circular_kernel_2/doc_tex/Circular_kernel_2/fig/Boolean_operation_detail.png -text
Circular_kernel_2/examples/Circular_kernel_2/CMakeLists.txt -text
Circular_kernel_2/include/CGAL/Circular_kernel_intersections.h -text
Circular_kernel_2/include/CGAL/Filtered_bbox_circular_kernel_2/bbox_filtered_intersections.h -text
Circular_kernel_3/demo/Circular_kernel_3/images/button_axis.gif -text svneol=unset#image/gif
@ -1778,7 +1777,6 @@ Kernel_23/doc_tex/Kernel_23_ref/fig/compare_x_at_y.gif -text svneol=unset#image/
Kernel_23/doc_tex/Kernel_23_ref/fig/compare_x_at_y.pdf -text svneol=unset#application/pdf
Kernel_23/doc_tex/Kernel_23_ref/fig/transvecthree.gif -text svneol=unset#image/gif
Kernel_23/doc_tex/Kernel_23_ref/fig/transvectwo.gif -text svneol=unset#image/gif
Kernel_23/examples/Kernel_23/CMakeLists.txt -text
Kernel_23/include/CGAL/functions_on_enums.h -text
Kernel_23/test/Kernel_23/CMakeLists.txt -text
Kernel_d/include/CGAL/Kernel_d/Cartesian_const_iterator_d.h -text

View File

@ -1,17 +0,0 @@
# Created by the script cgal_create_cmake_script
# This is the CMake script for compiling a CGAL application.
project (Circular_kernel_2_Example)
set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
find_package(CGAL)
if ( CGAL_FOUND )
include(${CGAL_USE_FILE})
include(CreateSingleSourceCGALProgram)
create_single_source_cgal_program( intersecting_arcs.cpp )
endif()

View File

@ -1,17 +0,0 @@
# Created by the script cgal_create_cmake_script
# This is the CMake script for compiling a CGAL application.
project (Kernel_23_Example)
set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
find_package(CGAL)
if ( CGAL_FOUND )
include(${CGAL_USE_FILE})
include(CreateSingleSourceCGALProgram)
create_single_source_cgal_program( MyKernel.cpp )
endif()

View File

@ -1,25 +0,0 @@
# Created by the script cgal_create_cmake_script
# This is the CMake script for compiling a CGAL application.
project (Straight_skeleton_2_Example)
set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
find_package(CGAL)
if ( CGAL_FOUND )
include(${CGAL_USE_FILE})
include(CreateSingleSourceCGALProgram)
create_single_source_cgal_program( Create_offset_polygons_2.cpp )
create_single_source_cgal_program( Create_skeleton_and_offset_polygons_2.cpp )
create_single_source_cgal_program( Create_skeleton_and_offset_polygons_from_polygon_with_holes_2.cpp )
create_single_source_cgal_program( Create_skeleton_and_offset_polygons_with_holes_2.cpp )
create_single_source_cgal_program( Create_straight_skeleton_2.cpp )
create_single_source_cgal_program( Create_straight_skeleton_from_polygon_with_holes_2.cpp )
create_single_source_cgal_program( Low_level_API.cpp )
create_single_source_cgal_program( Show_offset_polygon.cpp )
create_single_source_cgal_program( Show_straight_skeleton.cpp )
endif()

View File

@ -1074,6 +1074,7 @@ int main( int argc, char const* argv[] )
case 'p' : sAcceptNonSimpleInput = true ; break ;
case 'n' : sNoOp = true ; break ;
case 'g' : sValidateGeometry = true ; break ;
case 'L' : sClassifyCases = true ; break ;
case 'r' :
if ( arg.length() > 2 )
@ -1335,6 +1336,7 @@ int main( int argc, char const* argv[] )
<< " -fPATH Append PATH to each filename" << endl
<< " -rMAX Rotate input vertex sequence by one vertex up to MAX times" << endl
<< " -mMAX Ignore polygons with a vertex count greater than MAX" << endl
<< " -L list of OK and failed cases on (separated) text files" << endl
<< endl
<< " --full_skeleton Create, verify and discard full skeleton even if partial skeleton will be used (for offsetting)." << endl
<< endl