port of Crypto++

http://www.cryptopp.com/

Issue #45
This commit is contained in:
Emery Hemingway
2016-09-07 19:47:38 +02:00
committed by Norman Feske
parent c3a7df1e5e
commit 41fa0537fd
4 changed files with 26 additions and 0 deletions

13
lib/mk/cryptopp.mk Normal file
View File

@@ -0,0 +1,13 @@
CRYPTOPP_SRC_DIR = $(call select_from_ports,cryptopp)/src/lib/cryptopp
LIBS += stdcxx
CRYPTOPP_SRC_CC := $(notdir $(wildcard $(CRYPTOPP_SRC_DIR)/*.cpp))
CRYPTOPP_FILTER = bench.cpp bench2.cpp test.cpp validat1.cpp
SRC_CC := $(filter-out $(CRYPTOPP_FILTER),$(CRYPTOPP_SRC_CC))
CC_WARN += -Wno-delete-non-virtual-dtor
vpath %.cpp $(CRYPTOPP_SRC_DIR)