[lib-url] update 'Makefile' to include 'src/core' in header path search (#5659)

The `url.cpp` can use core header files (e.g. `common/core_utils.hpp`)
This change ensure the core header files should be able to see each
other (e.g., `code_utils.hpp` including `arg_macros.hpp`).
This commit is contained in:
Abtin Keshavarzian
2020-10-16 08:07:16 -07:00
committed by Jonathan Hui
parent c9c0cf404d
commit 92078815f5
+2
View File
@@ -33,6 +33,7 @@ noinst_LIBRARIES = libopenthread-url.a
libopenthread_url_a_CPPFLAGS = \
-I$(top_srcdir)/include \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/core \
$(NULL)
libopenthread_url_a_SOURCES = \
@@ -45,6 +46,7 @@ check_PROGRAMS = test-url
test_url_CPPFLAGS = \
-I$(top_srcdir)/include \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/core \
-DSELF_TEST \
$(NULL)