This commit is a response to Genode's increased default warning level. See the corresponding issue at: https://github.com/genodelabs/genode/issues/465
16 lines
376 B
Makefile
16 lines
376 B
Makefile
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)
|
|
|
|
CC_CXX_WARN_STRICT =
|