Sébastien Loriot
|
254d60f642
|
First pass on removing license notice in header for GPL files
|
2019-10-19 15:23:19 +02:00 |
Sébastien Loriot
|
7356421d80
|
introduce Commercial license SPDX tag
|
2019-10-19 12:15:19 +02:00 |
Sébastien Loriot
|
9bd9c68b83
|
update LGPL[23]+ and GPL[23]+ SPDX tags
ack -l --no-svg "SPDX-License-Identifier: GPL-3.0\+" | xargs sed -i "s/SPDX-License-Identifier: GPL-3.0+/SPDX-License-Identifier: GPL-3.0-or-later/"
ack -l --no-svg "SPDX-License-Identifier: LGPL-3.0\+" | xargs sed -i "s/SPDX-License-Identifier: LGPL-3.0+/SPDX-License-Identifier: LGPL-3.0-or-later/"
ack -l --no-svg "SPDX-License-Identifier: GPL-2.0\+" | xargs sed -i "s/SPDX-License-Identifier: GPL-2.0+/SPDX-License-Identifier: GPL-2.0-or-later/"
ack -l --no-svg "SPDX-License-Identifier: LGPL-2.0\+" | xargs sed -i "s/SPDX-License-Identifier: LGPL-2.0+/SPDX-License-Identifier: LGPL-2.0-or-later/"
|
2019-10-18 21:57:54 +02:00 |
Mael Rouxel-Labbé
|
f68141a6d3
|
Merge branch 'PMP-Locate-GF-old' into PMP-Locate-GF
|
2019-07-01 11:28:25 +02:00 |
Laurent Rineau
|
4fbf00fb8a
|
CMake>=3.13: opt for for new policies up to 3.15
|
2019-06-19 14:34:59 +02:00 |
Mael Rouxel-Labbé
|
0b506f5cce
|
Fix package dependencies
|
2019-05-10 12:41:25 +02:00 |
Sébastien Loriot
|
59bc453b42
|
first batch of replacement for level 1 in classified ref man
command used:
grep -l "##" */doc/*/PackageDescription.txt | xargs sed -i -E 's/\#\#\s*([[:print:]]+[[:alnum:]])\s*\#\#\s*$/\\cgalCRPSection{\1}/'
|
2019-02-14 10:32:39 +01:00 |
Guillaume Damiand
|
7d406fbb9c
|
Merge branch 'master' into CGAL-cmake_cleanup-gdamiand
|
2018-11-05 07:32:58 +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 |
Guillaume Damiand
|
7f09308d33
|
Remove all include_directories(BEFORE ../../include) in CMakeLists.txt
|
2018-10-17 13:07:22 +02:00 |
Sébastien Loriot
|
ea240cfac5
|
use \PkgXXX instead of \PkgXXXSummary
|
2018-10-08 10:28:44 +02:00 |
Sébastien Loriot
|
a2e8a1c68f
|
add the suffix Ref to doxygen link to reference
|
2018-10-08 10:26:56 +02:00 |
Laurent Rineau
|
c9a7d52582
|
Merge pull request #2912 from afabri/CGAL-more_fallthrough-GF
More fixes for GNU 8.0.1: fallthrough warnings and constness
|
2018-03-26 10:56:07 +02:00 |
Andreas Fabri
|
54a45c6a5e
|
Declare a comparison functor const
|
2018-03-08 14:37:20 +00:00 |
Laurent Rineau
|
0a74393dcf
|
Commit all new dependencies files
|
2018-03-06 18:44:48 +01:00 |
Maxime Gimeno
|
688b5dd06e
|
Move dependencies creation to package_info and add dependencies to git
|
2018-02-02 12:08:05 +01:00 |
Maxime Gimeno
|
8bde832931
|
Fix METIS headers in BGL
|
2018-02-02 12:08:05 +01:00 |
Maxime Gimeno
|
a676d5a60e
|
Try to fix errors in classification checks
|
2018-02-02 12:08:05 +01:00 |
Maxime Gimeno
|
acd0a72edf
|
Modify travis script to test dependencies
|
2018-02-02 12:08:05 +01:00 |
Maxime Gimeno
|
ae36b452bc
|
Add dependencies of all packages
|
2018-02-02 12:08:05 +01:00 |
Sébastien Loriot
|
8cdfad0d08
|
add missing URL and Id tags
|
2017-11-15 22:58:57 +01:00 |
Sébastien Loriot
|
ee57fc2d6c
|
add SPDX identifier for files under the GPL-3+ license
|
2017-11-12 10:17:51 +01:00 |
Sébastien Loriot
|
97e8ea1794
|
remove extra space
|
2017-11-12 10:17:51 +01:00 |
Sébastien Loriot
|
50510c05ea
|
add include directive for license of all GPL header files
done using:
ack-grep "^GPL" */package_info/*/license.txt -l | awk -F "/" '{print $1}' > /tmp/gpl_packages
for i in `cat /tmp/gpl_packages | \
grep -v Operations_on_polyhedra | \
grep -v Algebraic_kernel_for_circles | \
grep -v Algebraic_kernel_for_spheres | \
grep -v Polyhedron_IO`;
do
echo $i
python Scripts/developer_scripts/add_license_in_pkg_header.py $i
done
python Scripts/developer_scripts/add_license_in_pkg_header.py Operations_on_polyhedra Polygon_mesh_processing
python Scripts/developer_scripts/add_license_in_pkg_header.py Algebraic_kernel_for_circles Circular_kernel_2
python Scripts/developer_scripts/add_license_in_pkg_header.py Algebraic_kernel_for_spheres Circular_kernel_3
python Scripts/developer_scripts/add_license_in_pkg_header.py Polyhedron_IO Polyhedron
|
2017-01-19 15:20:25 +01:00 |
Maxime Gimeno
|
a01593e0bb
|
Unify the links to the Polyhedron demo in the package descriptions.
|
2017-01-10 14:56:52 +01:00 |
Sébastien Loriot
|
7e2ee496de
|
update project name of cmake scripts of tests
|
2016-09-08 00:26:37 +02: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 |
Philipp Möller
|
0a04a3a48f
|
Use CGAL_DOC_VERSION
|
2016-02-11 15:37:54 +01:00 |
Andreas Fabri
|
7d19ec1350
|
reindent
|
2016-01-28 12:19:42 +01:00 |
Philipp Möller
|
71b4e9c515
|
Use CGAL_FULL_VERSION in all Doxyfile.in
|
2015-12-17 16:33:28 +01:00 |
Philipp Möller
|
79b7fc5081
|
Handle the INPUT cases where the whole include dir is used
|
2015-12-10 17:03:46 +01:00 |
Andreas Fabri
|
38d063539a
|
cleanup
|
2015-10-02 08:17:19 +02:00 |
Sébastien Loriot
|
50595505c4
|
Merge branch 'Fix_warnings-GF'
Fixes warnings in various packages
Successfully tested in CGAL-4.7-Ic-87
Approved by the release Manager
|
2015-07-17 14:21:21 +02:00 |
Sébastien Loriot
|
84d82c3a8e
|
fix unused variable warnings
|
2015-07-16 10:15:33 +02:00 |
Laurent Rineau
|
15c1469a54
|
CGAL requires CMake>=2.8.11.
|
2015-07-10 17:01:42 +02:00 |
Laurent Rineau
|
3ec0c69f8f
|
We want 2.8.10 for all demos
Previous versions are not tested by the CGAL daily test suite.
|
2015-07-09 17:50:22 +02:00 |
Sébastien Loriot
|
722abba27b
|
cosmetic changes to remove mentions of QT4
|
2015-07-07 18:00:43 +02:00 |
Laurent Rineau
|
e5bcdc5f3e
|
Update all CMakeLists.txt
- CMake 2.8.11 or later is now required
- GLEW is no longer used by demo/Polyhedron/
|
2015-07-06 18:14:34 +02:00 |
Andreas Fabri
|
2aa0f98526
|
Arithmetic_kernel -> Exact_integer/rational
|
2014-07-16 16:45:14 +02:00 |
Sébastien Loriot
|
0230e979e2
|
Merge branch 'CGAL-use_leda-GF-OLD' into CGAL-use_leda-GF
Conflicts:
Arrangement_on_surface_2/test/Arrangement_on_surface_2/construction_test_suite_generator.cpp
Arrangement_on_surface_2/test/Arrangement_on_surface_2/test_construction.cpp
Documentation/doc/Installation.txt
Kernel_23/include/CGAL/Exact_predicates_exact_constructions_kernel.h
|
2014-06-18 22:50:06 +02:00 |
Sébastien Loriot
|
9114db9085
|
restore figure source files removed in 0fa2cacb
| commit 0fa2cacb60
| Author: Sébastien Loriot <sebastien.loriot@cgal.org>
| Date: Tue Dec 3 17:27:02 2013 +0100
|
| remove doc_tex documentation (including developer manual) and old manual tools
|
2014-02-10 14:54:23 +01:00 |
Sébastien Loriot
|
0fa2cacb60
|
remove doc_tex documentation (including developer manual) and old manual tools
|
2013-12-03 17:27:02 +01:00 |
Andreas Fabri
|
6c547e5663
|
Mainly added includes
|
2013-09-13 22:24:30 +02:00 |
Laurent Rineau
|
bc03aaf30b
|
Put doc/ in the global dont_submit file
|
2013-08-20 10:57:03 +02:00 |
Sébastien Loriot
|
d282ade623
|
use \cgalCite instead of \cite
using perl -i -pe 's/\\cite\s*{?([a-zA-Z0-9:-]+)}?/\\cgalCite{$1}/g'
|
2013-08-05 18:25:26 +02:00 |
Sébastien Loriot
|
0f995306ee
|
prevent an include file to be parsed by doxygen
|
2013-06-19 09:57:41 +02:00 |