Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Zerocoin/libzerocoin
Zerocoin: C++ lib for anonymous extension to bitcoin
https://github.com/Zerocoin/libzerocoin
Last synced: 18 days ago
JSON representation
Zerocoin: C++ lib for anonymous extension to bitcoin
- Host: GitHub
- URL: https://github.com/Zerocoin/libzerocoin
- Owner: Zerocoin
- License: mit
- Created: 2013-07-03T02:03:09.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2020-05-20T16:20:03.000Z (over 4 years ago)
- Last Synced: 2024-07-31T22:49:39.155Z (3 months ago)
- Language: C++
- Homepage: http://zerocoin.org/
- Size: 235 KB
- Stars: 177
- Watchers: 57
- Forks: 53
- Open Issues: 4
-
Metadata Files:
- Readme: README.cmake
- License: LICENSE
Awesome Lists containing this project
README
# Using CMake to build libzerocoin
CMake version 2.8 or newer is required.
Create a build directory wherever you like:
$ mkdir build
$ cd buildRun CMake, pointing it to the source directory:
$ cmake ..
Now run the make command to compile the library:
$ make
Install the library into the system to use:
$ sudo make install
Finally, tell the system to rescan the shared library directories:
$ sudo ldconfig
The test, benchmark, tutorial, and paramgen utilites are compiled but
not installed into the system.# CMake build options
If you wish to install libzerocoin into a non-default prefix (that is,
not to /usr/local/* ), then run cmake with this option:$ cmake -DCMAKE_INSTALL_PREFIX=
e.g., to install to /opt/zerocoin, run:
$ cmake -DCMAKE_INSTALL_PREFIX=/opt/zerocoin ..
To make a debug version of the library, add -DCMAKE_BUILD_TYPE=DEBUG
to the cmake command line:$ cmake -DCMAKE_BUILD_TYPE=DEBUG ..
When compiling the library with 'make' you can set VERBOSE=1 to show
the process in more detail:$ make VERBOSE=1