This commit is a response to Genode's increased default warning level. See the corresponding issue at: https://github.com/genodelabs/genode/issues/465
22 lines
487 B
Makefile
22 lines
487 B
Makefile
GMOCK_DIR := $(call select_from_ports,googletest)/src/lib/googletest/googlemock
|
|
GTEST_DIR := $(call select_from_ports,googletest)/src/lib/googletest/googletest
|
|
|
|
include $(REP_DIR)/lib/import/import-gtest.mk
|
|
|
|
SHARED_LIB = yes
|
|
|
|
SRC_CC = gmock-all.cc
|
|
|
|
vpath %.cc $(GMOCK_DIR)/src
|
|
|
|
INC_DIR += $(GMOCK_DIR)
|
|
INC_DIR += $(GMOCK_DIR)/include
|
|
INC_DIR += $(GMOCK_DIR)/include/internal
|
|
|
|
INC_DIR += $(GTEST_DIR)/include
|
|
INC_DIR += $(GTEST_DIR)/include/internal
|
|
|
|
LIBS += stdcxx
|
|
|
|
CC_CXX_WARN_STRICT =
|