mirror of https://github.com/CGAL/cgal
remove not need CMakeLists.txt's
This commit is contained in:
parent
ea6de9ccdb
commit
dad46fe794
|
|
@ -34,7 +34,6 @@ AABB_tree/doc_tex/AABB_tree_ref/AABB_tree.tex -text
|
|||
AABB_tree/doc_tex/AABB_tree_ref/introduction.tex -text
|
||||
AABB_tree/doc_tex/AABB_tree_ref/main.tex -text
|
||||
AABB_tree/dont_submit -text
|
||||
AABB_tree/examples/AABB_tree/CMakeLists.txt -text
|
||||
AABB_tree/examples/AABB_tree/cleanup.bat -text
|
||||
AABB_tree/include/CGAL/AABB_intersections.h -text
|
||||
AABB_tree/include/CGAL/AABB_polyhedron_segment_primitive.h -text
|
||||
|
|
@ -1269,7 +1268,6 @@ Circular_kernel_3/include/CGAL/Circle_type.h -text
|
|||
Circular_kernel_3/include/CGAL/Circular_kernel_3/internal_function_compare_to_right_spherical_kernel.h -text
|
||||
Circular_kernel_3/include/CGAL/Spherical_kernel_intersections.h -text
|
||||
Circular_kernel_3/include/CGAL/global_functions_spherical_kernel_3.h -text
|
||||
Circular_kernel_3/test/Circular_kernel_3/CMakeLists.txt -text
|
||||
Circular_kernel_3/test/Circular_kernel_3/include/CGAL/_test_functionalities_on_sphere.h -text
|
||||
Circular_kernel_3/test/Circular_kernel_3/test_Lazy_Spherical_kernel.cpp -text
|
||||
Circular_kernel_3/test/Circular_kernel_3/test_Lazy_spherical_kernel_basics.cpp -text
|
||||
|
|
@ -1397,7 +1395,6 @@ Combinatorial_map/include/CGAL/internal/Combinatorial_map_utility.h -text
|
|||
Combinatorial_map/package_info/Combinatorial_map/description.txt -text
|
||||
Combinatorial_map/package_info/Combinatorial_map/long_description.txt -text
|
||||
Combinatorial_map/package_info/Combinatorial_map/maintainer -text
|
||||
Combinatorial_map/test/Combinatorial_map/CMakeLists.txt -text
|
||||
Combinatorial_map/test/Combinatorial_map/Combinatorial_map_2_test.h -text
|
||||
Combinatorial_map/test/Combinatorial_map/Combinatorial_map_3_test.h -text
|
||||
Combinatorial_map/test/Combinatorial_map/Combinatorial_map_test.cpp -text
|
||||
|
|
@ -1785,7 +1782,6 @@ Installation/test/Installation/link_to_CGAL_Core.cpp -text
|
|||
Installation/test/Installation/link_to_CGAL_ImageIO.cpp -text
|
||||
Installation/test/Installation/link_to_CGAL_Qt3.cpp -text
|
||||
Installation/test/Installation/link_to_CGAL_Qt4.cpp -text
|
||||
Interpolation/demo/Interpolation/CMakeLists.txt -text
|
||||
Interpolation/doc_tex/Interpolation/interpolation.png -text
|
||||
Interpolation/doc_tex/Interpolation/nn_coords.gif -text svneol=unset#image/gif
|
||||
Interpolation/doc_tex/Interpolation/nn_coords.ipe -text svneol=unset#application/postscript
|
||||
|
|
@ -1852,7 +1848,6 @@ Kernel_23/examples/Kernel_23/MyPointC2_iostream.h -text
|
|||
Kernel_23/examples/Kernel_23/cartesian_converter.cpp -text
|
||||
Kernel_23/include/CGAL/functions_on_enums.h -text
|
||||
Kernel_23/include/CGAL/internal/Projection_traits_3.h -text
|
||||
Kernel_23/test/Kernel_23/CMakeLists.txt -text
|
||||
Kernel_23/test/Kernel_23/overload_bug.cpp -text
|
||||
Kernel_d/doc_tex/Kernel_d/hypercube.png -text
|
||||
Kernel_d/doc_tex/Kernel_d_ref/Kernel_Compute_coordinate_d.tex -text
|
||||
|
|
|
|||
|
|
@ -1,40 +0,0 @@
|
|||
# Created by the script cgal_create_cmake_script
|
||||
# This is the CMake script for compiling a CGAL application.
|
||||
|
||||
project(AABB_examples)
|
||||
|
||||
cmake_minimum_required(VERSION 2.6.2)
|
||||
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" VERSION_GREATER 2.6)
|
||||
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_GREATER 2.8.3)
|
||||
cmake_policy(VERSION 2.8.4)
|
||||
else()
|
||||
cmake_policy(VERSION 2.6)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
include_directories(../../include/)
|
||||
|
||||
# Find CGAL
|
||||
find_package(CGAL COMPONENTS)
|
||||
#include( ${CGAL_USE_FILE} )
|
||||
|
||||
if ( CGAL_FOUND )
|
||||
|
||||
include( ${CGAL_USE_FILE} )
|
||||
|
||||
include( CGAL_CreateSingleSourceCGALProgram )
|
||||
|
||||
create_single_source_cgal_program("AABB_segment_3_example.cpp")
|
||||
create_single_source_cgal_program("AABB_triangle_3_example.cpp")
|
||||
create_single_source_cgal_program("AABB_polyhedron_edge_example.cpp")
|
||||
create_single_source_cgal_program("AABB_polyhedron_facet_distance_example.cpp")
|
||||
create_single_source_cgal_program("AABB_polyhedron_facet_intersection_example.cpp")
|
||||
create_single_source_cgal_program("AABB_custom_example.cpp")
|
||||
create_single_source_cgal_program("AABB_insertion_example.cpp")
|
||||
create_single_source_cgal_program("AABB_custom_indexed_triangle_set_example.cpp")
|
||||
create_single_source_cgal_program("AABB_custom_triangle_soup_example.cpp")
|
||||
else()
|
||||
|
||||
message(STATUS "This program requires the CGAL library, and will not be compiled.")
|
||||
|
||||
endif()
|
||||
|
|
@ -1,44 +0,0 @@
|
|||
# Created by the script cgal_create_cmake_script
|
||||
# This is the CMake script for compiling a CGAL application.
|
||||
|
||||
|
||||
project( Circular_kernel_2_test )
|
||||
|
||||
cmake_minimum_required(VERSION 2.6.2)
|
||||
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" VERSION_GREATER 2.6)
|
||||
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_GREATER 2.8.3)
|
||||
cmake_policy(VERSION 2.8.4)
|
||||
else()
|
||||
cmake_policy(VERSION 2.6)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
find_package(CGAL QUIET COMPONENTS Core )
|
||||
|
||||
if ( CGAL_FOUND )
|
||||
|
||||
include( ${CGAL_USE_FILE} )
|
||||
|
||||
include( CGAL_CreateSingleSourceCGALProgram )
|
||||
|
||||
include_directories (BEFORE include)
|
||||
include_directories (BEFORE ../../include)
|
||||
include_directories (BEFORE ../../../Kernel_23/test/Kernel_23/include)
|
||||
include_directories (BEFORE ../Kernel_23/include)
|
||||
include_directories (BEFORE ../Cartesian_kernel/include)
|
||||
include_directories (BEFORE ../Homogeneous_kernel/include)
|
||||
include_directories (BEFORE ../Intersections_2/include)
|
||||
|
||||
create_single_source_cgal_program( "test_Circular_kernel.cpp" )
|
||||
create_single_source_cgal_program( "test_Exact_circular_kernel.cpp" )
|
||||
create_single_source_cgal_program( "test_Filtered_bbox_circular_kernel.cpp" )
|
||||
create_single_source_cgal_program( "test_Line_arc.cpp" )
|
||||
create_single_source_cgal_program( "test_Circular_kernel_basic.cpp" )
|
||||
create_single_source_cgal_program( "test_Exact_circular_kernel_basic.cpp" )
|
||||
|
||||
else()
|
||||
|
||||
message(STATUS "NOTICE: This program requires the CGAL library, and will not be compiled.")
|
||||
|
||||
endif()
|
||||
|
||||
|
|
@ -1,47 +0,0 @@
|
|||
# Created by the script cgal_create_cmake_script
|
||||
# This is the CMake script for compiling a CGAL application.
|
||||
|
||||
|
||||
project( Circular_kernel_3_test )
|
||||
|
||||
cmake_minimum_required(VERSION 2.6.2)
|
||||
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" VERSION_GREATER 2.6)
|
||||
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_GREATER 2.8.3)
|
||||
cmake_policy(VERSION 2.8.4)
|
||||
else()
|
||||
cmake_policy(VERSION 2.6)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
find_package(CGAL QUIET COMPONENTS Core )
|
||||
|
||||
if ( CGAL_FOUND )
|
||||
|
||||
include( ${CGAL_USE_FILE} )
|
||||
|
||||
include( CGAL_CreateSingleSourceCGALProgram )
|
||||
|
||||
include_directories (BEFORE include)
|
||||
include_directories (BEFORE ../../include)
|
||||
include_directories (BEFORE ../../../Kernel_23/test/Kernel_23/include)
|
||||
include_directories (BEFORE ../Kernel_23/include)
|
||||
include_directories (BEFORE ../Cartesian_kernel/include)
|
||||
include_directories (BEFORE ../Homogeneous_kernel/include)
|
||||
include_directories (BEFORE ../../../Intersections_3/include)
|
||||
include_directories (BEFORE ../../../Algebraic_kernel_for_spheres/include)
|
||||
include_directories (BEFORE ../../../Kernel_23/include)
|
||||
include_directories (BEFORE ../../../Cartesian_kernel/include)
|
||||
|
||||
create_single_source_cgal_program( "test_Spherical_kernel.cpp" )
|
||||
create_single_source_cgal_program( "test_Spherical_kernel_basics.cpp" )
|
||||
create_single_source_cgal_program( "test_Exact_spherical_kernel.cpp" )
|
||||
create_single_source_cgal_program( "test_Lazy_Spherical_kernel.cpp" )
|
||||
create_single_source_cgal_program( "test_Lazy_spherical_kernel_basics.cpp" )
|
||||
create_single_source_cgal_program( "test_Spherical_kernel_with_core.cpp" )
|
||||
|
||||
else()
|
||||
|
||||
message(STATUS "NOTICE: This program requires the CGAL library, and will not be compiled.")
|
||||
|
||||
endif()
|
||||
|
||||
|
|
@ -1,47 +0,0 @@
|
|||
# cd debug; cmake .. -DCMAKE_BUILD_TYPE=Debug
|
||||
# cd release; cmake .. -DCMAKE_BUILD_TYPE=Release
|
||||
|
||||
project( Combinatorial_map_test )
|
||||
|
||||
CMAKE_MINIMUM_REQUIRED(VERSION 2.4.5)
|
||||
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
|
||||
set(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
|
||||
|
||||
if ( COMMAND cmake_policy )
|
||||
cmake_policy( SET CMP0003 NEW )
|
||||
endif()
|
||||
|
||||
####################################################################################
|
||||
OPTION(BUILD_TESTS "Build tests." ON)
|
||||
|
||||
if (BUILD_TESTS)
|
||||
ENABLE_TESTING()
|
||||
INCLUDE(CTest)
|
||||
|
||||
if (CMAKE_COMPILER_IS_GNUCXX)
|
||||
SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g -O0 -Wall -W -Wshadow -Wunused-variable -Wunused-parameter -Wunused-function -Wunused -Wno-system-headers -Wno-deprecated -Woverloaded-virtual -Wwrite-strings -fprofile-arcs -ftest-coverage -frounding-math")
|
||||
endif (CMAKE_COMPILER_IS_GNUCXX)
|
||||
if (CMAKE_COMPILER_IS_GNUCC)
|
||||
SET(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -g -O0 -Wall -W -fprofile-arcs -ftest-coverage -frounding-math")
|
||||
endif (CMAKE_COMPILER_IS_GNUCC)
|
||||
endif (BUILD_TESTS)
|
||||
####################################################################################
|
||||
|
||||
find_package(CGAL QUIET COMPONENTS Core )
|
||||
|
||||
if ( NOT CGAL_FOUND )
|
||||
message(FATAL_ERROR "This program requires the CGAL library, and will not be compiled.")
|
||||
endif ( NOT CGAL_FOUND )
|
||||
|
||||
include( ${CGAL_USE_FILE} )
|
||||
|
||||
include_directories(BEFORE ../../include)
|
||||
add_executable(Combinatorial_map_test Combinatorial_map_test.cpp)
|
||||
target_link_libraries(Combinatorial_map_test ${CGAL_LIBRARIES}
|
||||
${CGAL_3RD_PARTY_LIBRARIES} )
|
||||
|
||||
if (BUILD_TESTS)
|
||||
ADD_TEST(Combinatorial_map_test "./Combinatorial_map_test")
|
||||
endif (BUILD_TESTS)
|
||||
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
# Created by the script cgal_create_cmake_script
|
||||
# This is the CMake script for compiling a CGAL application.
|
||||
|
||||
|
||||
project( Interpolation_Demo )
|
||||
|
||||
cmake_minimum_required(VERSION 2.6.2)
|
||||
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" VERSION_GREATER 2.6)
|
||||
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_GREATER 2.8.3)
|
||||
cmake_policy(VERSION 2.8.4)
|
||||
else()
|
||||
cmake_policy(VERSION 2.6)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
find_package(CGAL QUIET COMPONENTS Core )
|
||||
|
||||
if ( CGAL_FOUND )
|
||||
|
||||
include( ${CGAL_USE_FILE} )
|
||||
|
||||
include( CGAL_CreateSingleSourceCGALProgram )
|
||||
|
||||
create_single_source_cgal_program( "gv_interpolation_2.cpp" )
|
||||
create_single_source_cgal_program( "surface_voronoi.cpp" )
|
||||
|
||||
else()
|
||||
|
||||
message(STATUS "This program requires the CGAL library, and will not be compiled.")
|
||||
|
||||
endif()
|
||||
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
# Created by the script cgal_create_cmake_script
|
||||
# This is the CMake script for compiling a CGAL application.
|
||||
|
||||
project (Kernel_23_Test)
|
||||
|
||||
cmake_minimum_required(VERSION 2.6.2)
|
||||
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" VERSION_GREATER 2.6)
|
||||
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}" VERSION_GREATER 2.8.3)
|
||||
cmake_policy(VERSION 2.8.4)
|
||||
else()
|
||||
cmake_policy(VERSION 2.6)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
find_package(CGAL)
|
||||
|
||||
if ( CGAL_FOUND )
|
||||
|
||||
include(${CGAL_USE_FILE})
|
||||
include(CGAL_CreateSingleSourceCGALProgram)
|
||||
|
||||
include_directories (BEFORE include)
|
||||
include_directories (BEFORE ../../../Cartesian_kernel/include ../../../Homogeneous_kernel/include ../../../Filtered_kernel/include)
|
||||
include_directories (BEFORE ../../include)
|
||||
|
||||
create_single_source_cgal_program( Cartesian.cpp )
|
||||
create_single_source_cgal_program( Dimension.cpp )
|
||||
create_single_source_cgal_program( Filtered_cartesian.cpp )
|
||||
create_single_source_cgal_program( Filtered_homogeneous.cpp )
|
||||
create_single_source_cgal_program( Homogeneous.cpp )
|
||||
create_single_source_cgal_program( Kernel_checker.cpp )
|
||||
create_single_source_cgal_program( Lazy_kernel.cpp )
|
||||
create_single_source_cgal_program( Simple_cartesian.cpp )
|
||||
create_single_source_cgal_program( Simple_homogeneous.cpp )
|
||||
create_single_source_cgal_program( test_kernel__.cpp )
|
||||
create_single_source_cgal_program( overload_bug.cpp )
|
||||
endif()
|
||||
Loading…
Reference in New Issue