Mael
|
153c603209
|
Merge branch 'master' into CGAL-Clean_CMakeLists.txt-GF
|
2023-01-27 22:09:02 +01:00 |
albert-github
|
c32b1f4127
|
spelling corrections
Some spelling corrections (Directories starting with `S` rest - `W`),
|
2022-11-16 13:22:39 +01:00 |
Mael Rouxel-Labbé
|
6f187f332c
|
Misc minor fixes/improvements
|
2022-09-14 14:08:23 +02:00 |
Mael Rouxel-Labbé
|
9b265fddf8
|
Uniformize REQUIRED / QUIET usage:
Following this:
- CGAL: always REQUIRED
- CGAL component: COMPONENT / OPTIONAL_COMPONENT (never QUIET)
- required 3rd party: (not QUIET) + message(NOTICE "") on NOT_FOUND
- optional 3rd party: QUIET + message(STATUS "") except for Polyhedron/demo
- 3rd party components: COMPONENT / OPTIONAL_COMPONENT
(QUIET depending on required or optional 3rd party)
|
2022-09-06 16:24:27 +02:00 |
Mael Rouxel-Labbé
|
4fc486b195
|
Purge CMakeLists.txts from obsolete code / noise
|
2022-09-06 16:19:11 +02:00 |
Mael Rouxel-Labbé
|
7cb21c24b0
|
Uniformize message() for missing 3rd party libraries
STATUS for non-essential, NOTICE for important stuff
|
2022-09-06 16:07:31 +02:00 |
Laurent Rineau
|
2288225448
|
Massive update of CMake policies to version 3.23
|
2022-05-06 09:34:35 +02:00 |
Sébastien Loriot
|
1e7785b427
|
do not use PMP::parameters namespace
|
2022-01-04 16:00:38 +01:00 |
Sébastien Loriot
|
ab48f63e30
|
update latest cmake version tested
|
2021-11-09 10:58:47 +01:00 |
Sébastien Loriot
|
58181afcdb
|
remove useless include directives
|
2021-11-09 10:16:12 +01:00 |
Sébastien Loriot
|
8350dea94a
|
char* -> std::string
|
2021-10-04 09:49:24 +02:00 |
Sébastien Loriot
|
47028cd184
|
automatically move data files in data dir + update paths
Done for OFF/OBJ/STL/XYZ/PWN/PLY
|
2021-10-04 09:42:49 +02:00 |
Sébastien Loriot
|
250b8e9161
|
remove ./ prefix
|
2021-10-04 09:32:04 +02:00 |
Sebastien Loriot
|
b7323389c7
|
Merge pull request #5622 from maxGimeno/CMake-Update_versions_in_scripts-maxGimeno
Update maximum cmake versions
|
2021-04-17 10:58:14 +02:00 |
Sébastien Loriot
|
4436fd62a5
|
Merge pull request #5266 from janetournois/PMP-isotropic_remeshing_collapse_step-jtournois
PMP isotropic_remeshing() - improve edge flip step
|
2021-04-17 10:51:15 +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 |
Jane Tournois
|
955cceb572
|
temporarily disable manifold test
|
2021-03-29 14:33:44 +02:00 |
Maxime Gimeno
|
d5811d0a41
|
clang-tidy on tests
|
2021-02-18 15:15:12 +01:00 |
Laurent Rineau
|
4c947f0ee0
|
Merge pull request #5340 from danston/CGAL-clang_warnings_fix-danston
Clang warnings fixed
|
2021-02-05 16:10:37 +01:00 |
Sébastien Loriot
|
f4935dc199
|
Merge branch 'CGAL-Eigen3_support-5.1'
|
2021-01-15 10:54:02 +01:00 |
Sébastien Loriot
|
eecb00534e
|
fix macro name to be consistent with find_package
|
2021-01-15 10:43:34 +01:00 |
Dmitry Anisimov
|
fbbff6794f
|
surface mesh approximation range loop analysis copy to ref warning fixed
|
2021-01-08 10:16:53 +01:00 |
Maxime Gimeno
|
9c15f2c9dc
|
Use FeatureSummary in the demo, and remove CGAL_FOUND
|
2020-08-04 12:46:17 +02:00 |
Simon Giraudot
|
421096fd7f
|
Use imported targets everywhere
|
2020-04-15 14:06:13 +02:00 |
Simon Giraudot
|
6c8fd43ebb
|
Use CGAL_target_use_* mechanism for Eigen, LASLIB, OpenCV, TensorFlow, GLPK, SCIP, Boost IOStreams and Serialization
|
2020-02-10 11:57:56 +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
|
124012d9f9
|
replace cpp11::array by std::array
|
2019-03-29 13:28:33 +01: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 |
Laurent Rineau
|
b3b513c20d
|
Merge pull request #3708 from aboudev/VSA-lingjie
Surface mesh approximation: handle degenerate cases
|
2019-02-28 20:54:40 +01:00 |
Lingjie Zhu
|
b34eadc7fd
|
fix approximate_sqrt for EPICK
|
2019-02-28 20:18:30 +08:00 |
Lingjie Zhu
|
24e83fc944
|
std::sqrt -> CGAL::approximate_sqrt
|
2019-02-26 22:55:52 +08:00 |
Andreas Fabri
|
a483f3442b
|
CGAL: clean up CMakeLists.txt files in examples and tests
|
2019-02-13 17:29:29 +01:00 |
Lingjie Zhu
|
936d42aca8
|
fix teleport test
possible failed with no teleportation
|
2018-11-30 10:45:27 +01:00 |
Sébastien Loriot
|
1e6f408f2f
|
fix errors and warnings
|
2018-11-30 10:45:24 +01:00 |
Lingjie Zhu
|
efc7d7e9aa
|
fix CMakeLists project names
|
2018-11-30 10:45:24 +01:00 |
Sébastien Loriot
|
cbbc6d842e
|
package depends on Eigen (for PCA)
|
2018-11-30 10:45:24 +01:00 |
Lingjie Zhu
|
ae3986d4e5
|
minor fixes
|
2018-11-30 10:45:19 +01:00 |
Lingjie Zhu
|
c8ce944eb5
|
fix tests
|
2018-11-30 10:45:19 +01:00 |
Lingjie Zhu
|
99e1903d5d
|
fix correctness test
|
2018-11-30 10:45:19 +01:00 |
Lingjie Zhu
|
ebad196840
|
test remesh on the fly
|
2018-11-30 10:45:18 +01:00 |
Lingjie Zhu
|
a6c32b6279
|
copy data
|
2018-11-30 10:45:18 +01:00 |
Sébastien Loriot
|
2ad5f03a70
|
add data remove after filtering
|
2018-11-30 10:45:05 +01:00 |
Sébastien Loriot
|
b91dc57fd2
|
approximate_mesh -> approximate_triangle_mesh
|
2018-11-30 15:32:34 +08:00 |
Sébastien Loriot
|
f8c7ef3090
|
rename namespace from VSA -> Surface_mesh_approximation
|
2018-11-30 15:32:34 +08:00 |
Sébastien Loriot
|
fa0577a25a
|
rename subdirectory
|
2018-11-30 15:32:34 +08:00 |
Sébastien Loriot
|
c9d4ab26df
|
update signature to be consistent
|
2018-11-30 15:32:34 +08:00 |
Sébastien Loriot
|
ad964de61d
|
remove trailing whitespaces
|
2018-11-30 15:32:34 +08:00 |
Sébastien Loriot
|
b095d8011d
|
change return type of find_best_merge() and update doc
|
2018-11-30 15:32:34 +08:00 |
Sébastien Loriot
|
79347110d3
|
cosmetic renaming of parameters
|
2018-11-30 15:32:34 +08:00 |
Sébastien Loriot
|
7bf5cff4cf
|
accomodate update from master
|
2018-11-30 15:32:34 +08:00 |