Commit Graph

67 Commits

Author SHA1 Message Date
Laurent Rineau e5001d1a50 update our CMake version 3.18...3.31
That will suppress the warnings about `CMP0167` (from CMake 3.30):

```
CMake Warning (dev) at cmake/modules/display-third-party-libs-versions.cmake:37 (find_package):
  Policy CMP0167 is not set: The FindBoost module is removed.  Run "cmake
  --help-policy CMP0167" for policy details.  Use the cmake_policy command to
  set the policy and suppress this warning.
```
2025-02-04 14:32:37 +01:00
Laurent Rineau 3a223ebd1e cmake_minimum_required(VERSION 3.12...3.29) 2024-06-06 20:19:44 +02:00
albert-github 014c06fd19 spelling corrections
Some spelling corrections (Directories starting with `A`)
2022-11-14 15:32:47 +01:00
Laurent Rineau 2288225448 Massive update of CMake policies to version 3.23 2022-05-06 09:34:35 +02:00
Sébastien Loriot 4ffc949199 replace boost::unordered by std::unordered
but in T3, Mesh_3, TDS_3, P3[TM]3
2022-02-03 19:11:12 +01:00
Sébastien Loriot ab48f63e30 update latest cmake version tested 2021-11-09 10:58:47 +01:00
Sébastien Loriot 250b8e9161 remove ./ prefix 2021-10-04 09:32:04 +02:00
Maxime Gimeno c49152359c update max version of cmake and announce the new minimal in CHANGE.md 2021-04-15 15:08:54 +02:00
Maxime Gimeno 9c15f2c9dc Use FeatureSummary in the demo, and remove CGAL_FOUND 2020-08-04 12:46:17 +02:00
Mael cea51d63e0
Remove trailing whitespace 2020-04-02 14:37:33 +02:00
Mael 1747e8e932
Condition the creation of the weighted point to a good stream reading 2020-04-01 17:34:22 +02:00
Sébastien Loriot 38789af55d Update branch from master after trailing whitespaces and tabs removal 2020-03-26 19:25:47 +01:00
Sébastien Loriot 0779373835 extra run of the script to remove tabs and trailing whitespaces
right after the  merge of 4.14 release branch

+ manual fix on one line in:
    * Arrangement_on_surface_2/include/CGAL/IO/Arr_text_formatter.h
    * .travis/generate_travis.sh
2020-03-26 14:16:06 +01:00
Sébastien Loriot 0a46621dc6 Merge branch 'cgal/releases/CGAL-4.14-branch'
whitespace+tab removal, merged with option -Xignore-all-space
2020-03-26 13:28:46 +01:00
Sébastien Loriot 590612a563 run the script to remove tabs and trailing whitespaces 2020-03-26 13:25:16 +01:00
Mael Rouxel-Labbé e5ac71fd38 Fix maybe uninitialized warning (?) 2020-02-10 18:18:13 +01:00
Laurent Rineau 4fbf00fb8a CMake>=3.13: opt for for new policies up to 3.15 2019-06-19 14:34:59 +02:00
Sébastien Loriot d60f5645aa replace BOOST_FOREACH by c++ ranged-based for loop
some of the command used for the replacement:
ack --cpp  BOOST_FOREACH -l  | xargs sed -i -E "s/BOOST_FOREACH\(([a-zA-Z_:&0-9]+)\s(\w+)\,/for(\1 \2 :/"
ack --cpp  BOOST_FOREACH -l  | xargs sed -i -E "s/BOOST_FOREACH\((const [a-zA-Z_:&0-9]+)\s(\w+)\,/for(\1 \2 :/"
ack --cpp  BOOST_FOREACH -l  | xargs sed -i -E "s/BOOST_FOREACH\((const typename [a-zA-Z_:&0-9]+)\s(\w+)\,/for(\1 \2 :/"
ack --cpp  BOOST_FOREACH -l  | xargs sed -i -E "s/BOOST_FOREACH\((typename [<>a-zA-Z_:&0-9]+)\s(\w+)\,/for(\1 \2 :/"
ack "boost/foreach.hpp" -l --cpp | xargs sed -i '/boost\/foreach.hpp>/d'
2019-03-29 13:22:15 +01:00
Guillaume Damiand 92ba7fa6c9 Update minimum cmake required version in all CMakeLists.txt 2018-10-18 14:49:23 +02:00
Guillaume Damiand 0bd9088b5a Remove all include( ) and include( CGAL_CreateSingleSourceCGALProgram ) in CMakeLists.txt; they are no more required. 2018-10-17 14:17:08 +02:00
Sébastien Loriot b78217e7e9 fix conversion warning 2018-08-27 15:01:36 +02:00
Sébastien Loriot 8b9897c393 do not use c++11 features 2018-08-27 15:00:28 +02:00
Sébastien Loriot b394525171 fix warning 2018-08-23 08:44:33 +02:00
Sébastien Loriot 47b758ff38 add an example showing how to dump into OFF visible facets of an alpha-shape 2018-08-20 10:26:37 +02:00
Mael Rouxel-Labbé d0318957f2 Fixed a bunch of Alpha shape 3-related headers 2017-08-23 17:16:07 +02:00
Mael Rouxel-Labbé 3640902c6f Misc minor changes 2017-08-23 17:15:44 +02:00
Mael Rouxel-Labbé 72908fc076 Readability changes in Alpha_Shapes_3 2017-08-23 11:04:21 +02:00
Mael Rouxel-Labbé 85b74fb3cc Minor example improvements 2017-07-31 16:17:49 +02:00
Mael Rouxel-Labbé 8e12efbeae Improved weighted periodic example 2017-07-31 15:30:42 +02:00
Mael Rouxel-Labbé 31c5540cd5 Added an example of Alpha Shapes 3D with a regular periodic triangulation 2017-07-31 14:37:39 +02:00
Mael Rouxel-Labbé ff40039d79 Fixed some Bare_point / Weighted_point typedefs in Alpha_shapes_3
The triangulation defines those types, not the traits
2017-06-28 10:14:35 +02:00
Mael Rouxel-Labbé 7a7ac15f42 Fixed weighted Alpha_shapes_3 TDS construction
When weighted, Alpha_cell_base_3 must use Regular_triangulation_cell_base_3
as base
2017-06-28 10:14:35 +02:00
Andreas Fabri d35c6c913d Use Weighted_point_mapper_3 2016-11-21 15:33:27 +01:00
Sébastien Loriot 6b338eeb1f improve the name of projects in cmake scripts of examples 2016-09-08 00:02:55 +02:00
Sébastien Loriot 4c29bf1b44 CMAKE_SOURCE_DIR -> CMAKE_CURRENT_SOURCE_DIR 2016-03-24 16:33:46 +01:00
Sébastien Loriot 881e4d3199 request Core only in examples, tests and demos when really needed 2016-03-07 22:36:57 +01:00
Sébastien Loriot 2d191d6651 commit CMakeLists.txt for all examples and tests 2016-03-07 17:39:36 +01:00
Aymeric PELLE 3aeaa24ef7 Alpha_shapes must use P3DTT3 now. 2015-06-05 18:41:12 +02:00
Sébastien Loriot 52321a8cff update copyright and add an example using ExactAlphaComparisonTag 2011-12-27 16:15:09 +00:00
Sébastien Loriot d1ab01a9b0 merge candidate package into trunk 2010-12-08 17:39:30 +00:00
Manuel Caroli 492acffa43 correct typo: replace binary by code 2009-12-04 12:24:33 +00:00
Manuel Caroli 6c3d6f45e0 example computing periodic alpha shapes 2009-12-04 12:16:39 +00:00
Sylvain Pion e704029f4c Replace Triangulaiton_hierarchy_3 by the Fast_location policy. 2009-11-04 13:21:12 +00:00
Sébastien Loriot 6caed3812c deprecate class Weighted_alpha_shape_euclidean_traits_3, should use Regular_triangulation_euclidean_traits_3 instead. 2009-10-20 17:56:12 +00:00
Sylvain Pion d2f042288f Remove makefile. 2009-08-18 11:04:52 +00:00
Andreas Fabri b208f809b7 Replace Gt with K (all occurences, and locally tested before the commit) 2009-07-10 07:57:01 +00:00
Andreas Fabri fc00db5b80 typo 2009-07-08 11:34:50 +00:00
Andreas Fabri e07e4cedb2 Remove Alpha_shape_euclidean_traits_3 class as compute_squared_radius is now part of the Kernel concept 2009-07-07 13:06:39 +00:00
Andreas Fabri 0556076679 Remove Alpha_shape_euclidean_traits_3 class as compute_squared_radius is now part of the Kernel concept; Remove cmake generated Makefile 2009-07-06 20:26:44 +00:00
Mariette Yvinec 9a1aa55491 fixed traits class in ex_alpha_shapes_with_hierarchy_3.cpp 2009-06-03 07:29:57 +00:00