dfgood...@googlemail.com writes:
> I have read the CGAL bindings installation instructions and I getting all
> manner of errors when I run cmake.
>
> I suspect that the problem is step two, where it tells me to choose between
> in-source of out-of-source,
> but then does not tell me what to do having made the decision.
It simply means if you run CMake inside or outside of the source-tree.
# in-source
$ cd /path/to/cgal/bindings
$ cmake . # clutter my source-dir with build files
# out-of-source (recommended)
$ cd /path/to/cgal/bindings
$ mkdir build && cd build
$ cmake .. # notice the two dots
The "build" directory could be anywhere but most people make it a
sub-directory of the source-tree.
>
>
> I have got the debian source package (currently 4.0.2) in
> /usr/src/cgal-4.0.2, and I have the bindings
> checked out in ~/git/cgal-bindings.
The location of the CGAL package should be automatically detected. I
don't know if you actually need the src package, as most of the code is
in the headers anyway. The normal should be sufficient.