You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In testing I've found I need to bring in a few other libraries. I'm currently doing this like so
DEP_DIR = ../../ringbuffer
# Flags passed to the preprocessor.
# Set Google Test's header directory as a system directory, such that
# the compiler doesn't generate warnings in Google Test headers.
CPPFLAGS += -isystem $(GTEST_DIR)/include -isystem $(GMOCK_DIR)/include \
-I$(ARDUINO_MOCK_DIR)/include/arduino-mock/ \
-I$(DEP_DIR)
but it only allows for a single include. If you're amenable some kind of bash iterator should allow a list of directories to be added
The text was updated successfully, but these errors were encountered:
In testing I've found I need to bring in a few other libraries. I'm currently doing this like so
but it only allows for a single include. If you're amenable some kind of bash iterator should allow a list of directories to be added
The text was updated successfully, but these errors were encountered: