https://github.com/xdrpp/xdrpp
https://github.com/xdrpp/xdrpp
c-plus-plus rfc4506 rfc5531 rpc xdr
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/xdrpp/xdrpp
- Owner: xdrpp
- License: other
- Created: 2014-12-22T20:28:56.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2025-06-14T00:19:14.000Z (10 months ago)
- Last Synced: 2025-06-14T01:25:30.131Z (10 months ago)
- Topics: c-plus-plus, rfc4506, rfc5531, rpc, xdr
- Language: C++
- Homepage: http://xdrpp.github.io/xdrpp/index.html
- Size: 4.53 MB
- Stars: 16
- Watchers: 7
- Forks: 16
- Open Issues: 8
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
# To build from a release that already has a configure file:
./configure
make
# Documentation
Documentation is available on-line at the project home page,
.
To generate and view a local copy of the documentation, run:
doxygen
xdg-open doc/html/index.html
Finally, if you have neither an Internet connection nor doxygen, a
copy of the documentation can also be found in the `gh-pages` branch
of the repository, which you can access as:
git archive --prefix=www/ origin/gh-pages | bsdtar xf -
xdg-open www/index.html
# Building
To build after a git checkout that doesn't have ./configure, run:
./autogen.sh
./configure
make
As is traditional, the software can be installed with
make install
# To enable the cereal test
You need cereal in the top directory (before running `./configure`),
which you can get by running:
git clone https://github.com/USCiLab/cereal.git
(Or make cereal a symlink to an already checked out copy.)
# To enable autocheck tests
You need autocheck in the top directory. Run:
git clone https://github.com/thejohnfreeman/autocheck.git
(Or make autocheck a symlink to an already checked out copy.)