Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add DOCUMENTATION.md #667

Merged
merged 8 commits into from
Sep 28, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove incorrect make docs command from docs.
  • Loading branch information
harrism committed Sep 20, 2022
commit 27bf6f7bcbabc5b9a4586a74e6124354f05ba7dd
8 changes: 3 additions & 5 deletions cpp/doc/DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -555,11 +555,9 @@ We recommend installing Doxygen using conda (`conda install doxygen`) or a Linux
[build and install doxygen from source](http://www.doxygen.nl/manual/install.html).

To build the libcuspatial HTML documentation simply run the `doxygen` command from the `cpp/doxygen`
directory containing the `Doxyfile`. The libcuspatial documentation can also be built using
`make docs_cuspatial` from the cmake build directory (e.g. `cpp/build`). Doxygen reads and processes
all appropriate source files under the `cpp/include/` directory. The output is generated in the
`cpp/doxygen/html/` directory. You can load the local `index.html` file generated there into any web
browser to view the result.
directory containing the `Doxyfile`. Doxygen reads and processes all appropriate source files under
the `cpp/include/` directory. The output is generated in the `cpp/doxygen/html/` directory. You can
load the local `index.html` file generated there into any web browser to view the result.

To view docs built on a remote server, you can run a simple HTTP server using Python:
`cd html && python -m http.server`. Then open `http://<IP address>:8000` in your local web browser,
Expand Down