Skip to content

Commit

Permalink
Merge pull request #1738 from DGtal-team/dcoeurjo-patch-1
Browse files Browse the repository at this point in the history
Removing homebrew instructions (to be updated)
  • Loading branch information
dcoeurjo authored Jul 10, 2024
2 parents 31ff6fe + e41f6e5 commit 7de9c62
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 31 deletions.
12 changes: 12 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# DGtal 1.5beta

## New features / critical changes

## Changes
- *General*
- Removing DGtal installation with `homebrew` on mac (the formula being deprecated) (David Coeurjolly,
[#1738](https://github.com/DGtal-team/DGtal/pull/1738))

## Bug fixes


# DGtal 1.4

## New features / critical changes
Expand Down
17 changes: 0 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,6 @@ results and potential efficiency of the proposed work.

DGtal received the [Symposium on Geometry Processing Software Award in 2016](http://awards.geometryprocessing.org/).

Quick Install
=============

* MacOS (using [homebrew](http://brew.sh)):

brew tap DGtal-team/DGtal
brew install dgtal


(```brew options dgtal``` to enable optional features)

* Linux and windows: no binary package, please compile the library.


Additional instructions are available in the
[documentation](http://dgtal.org/doc/stable/moduleBuildDGtal.html).

Quick Build Instructions
========================

Expand Down
15 changes: 2 additions & 13 deletions src/DGtal/doc/moduleBuildDGtal.dox
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ dependencies:
To build DGtal in is full configuration, you may need these dependencies too:

- \e gmp,
- \e [CGAL](http://cgal.org) (build with Eigen enabled),
- \e [libIGL](https://libigl.github.io),
- \e cairo,
- \e qglviewer,
- \e insighttoolkit (ITK),
- \e [HDF5](http://www.hdfgroup.org/HDF5/)
- \e [CGAL](http://cgal.org) (build with Eigen enabled)


If you want to generate the documentation, you would need:
- \e doxygen >= 1.8.0,
Expand Down Expand Up @@ -106,17 +106,6 @@ Then, since recent Mac OS systems are unix-like operating systems, the
easiest way to compile DGtal with cmake/make is to follow Linux-based
instructions from source code archive.

If you use <a href="https://brew.sh">Homebrew</a> package manager on Mac,
DGtal is available in the package repository:
@code
brew tap DGtal-team/DGtal
brew install dgtal
@endcode
and to get build options:
@code
brew options dgtal
@endcode


\section cmakeDGtal Main DGtal cmake options

Expand Down
2 changes: 1 addition & 1 deletion tests/base/testClone2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,7 @@ bool testCloneTimings()
double t4 = computeTriangles<TriangleByClone>( size );
trace.info() << "Perimeter is " << t4 << std::endl;
++nb; nbok += Point::nbCreated == Point::nbDeleted ? 1 : 0;
++nb; nbok += Point::nbCreated < nbC ? 1 : 0;
++nb; nbok += Point::nbCreated <= nbC ? 1 : 0;
trace.info() << "(" << nbok << "/" << nb << ")"
<< " Point nbCreated=" << Point::nbCreated
<< " nbDeleted=" << Point::nbDeleted << std::endl;
Expand Down

0 comments on commit 7de9c62

Please sign in to comment.