Files
hpcore/makefile
Ravin Perera 0382475de1 Implemented config and crypto infrastructure (#2)
Added config file read/write infrastructure with RapidJSON.
Added key pair generation and sign/verify helper with libsodium.
2019-09-26 19:05:23 +05:30

5 lines
129 B
Makefile

all:
mkdir -p build
g++ src/*.cpp -lsodium -std=c++17 -o build/hpcore
echo 'build successful, binary in '`pwd`'/build/hpcore'