Remove src/includes
This commit is contained in:
parent
30bb4eb8f2
commit
2ca0bb0a2f
|
@ -474,7 +474,6 @@ add_subdirectory(lib)
|
||||||
#add_subdirectory(lib/includes)
|
#add_subdirectory(lib/includes)
|
||||||
add_subdirectory(third-party)
|
add_subdirectory(third-party)
|
||||||
add_subdirectory(src)
|
add_subdirectory(src)
|
||||||
#add_subdirectory(src/includes)
|
|
||||||
add_subdirectory(examples)
|
add_subdirectory(examples)
|
||||||
add_subdirectory(tests)
|
add_subdirectory(tests)
|
||||||
#add_subdirectory(tests/testdata)
|
#add_subdirectory(tests/testdata)
|
||||||
|
|
|
@ -55,5 +55,5 @@ clang-format:
|
||||||
CLANGFORMAT=`git config --get clangformat.binary`; \
|
CLANGFORMAT=`git config --get clangformat.binary`; \
|
||||||
test -z $${CLANGFORMAT} && CLANGFORMAT="clang-format"; \
|
test -z $${CLANGFORMAT} && CLANGFORMAT="clang-format"; \
|
||||||
$${CLANGFORMAT} -i lib/*.{c,h} lib/includes/nghttp2/*.h \
|
$${CLANGFORMAT} -i lib/*.{c,h} lib/includes/nghttp2/*.h \
|
||||||
src/*.{c,cc,h} src/includes/nghttp2/*.h examples/*.{c,cc} \
|
src/*.{c,cc,h} examples/*.{c,cc} \
|
||||||
tests/*.{c,h} bpf/*.c fuzz/*.cc
|
tests/*.{c,h} bpf/*.c fuzz/*.cc
|
||||||
|
|
|
@ -30,7 +30,6 @@ AM_CXXFLAGS = $(WARNCXXFLAGS) $(CXX1XCXXFLAGS)
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-I$(top_srcdir)/lib/includes \
|
-I$(top_srcdir)/lib/includes \
|
||||||
-I$(top_builddir)/lib/includes \
|
-I$(top_builddir)/lib/includes \
|
||||||
-I$(top_srcdir)/src/includes \
|
|
||||||
-I$(top_srcdir)/third-party \
|
-I$(top_srcdir)/third-party \
|
||||||
@LIBEVENT_OPENSSL_CFLAGS@ \
|
@LIBEVENT_OPENSSL_CFLAGS@ \
|
||||||
@OPENSSL_CFLAGS@ \
|
@OPENSSL_CFLAGS@ \
|
||||||
|
|
|
@ -37,7 +37,6 @@ AM_CPPFLAGS = \
|
||||||
-I$(top_srcdir)/lib/includes \
|
-I$(top_srcdir)/lib/includes \
|
||||||
-I$(top_builddir)/lib/includes \
|
-I$(top_builddir)/lib/includes \
|
||||||
-I$(top_srcdir)/lib \
|
-I$(top_srcdir)/lib \
|
||||||
-I$(top_srcdir)/src/includes \
|
|
||||||
-I$(top_srcdir)/third-party \
|
-I$(top_srcdir)/third-party \
|
||||||
-I$(top_srcdir)/third-party/llhttp/include \
|
-I$(top_srcdir)/third-party/llhttp/include \
|
||||||
@JEMALLOC_CFLAGS@ \
|
@JEMALLOC_CFLAGS@ \
|
||||||
|
|
|
@ -6,7 +6,6 @@ if(HAVE_CUNIT)
|
||||||
include_directories(
|
include_directories(
|
||||||
"${CMAKE_SOURCE_DIR}/lib/includes"
|
"${CMAKE_SOURCE_DIR}/lib/includes"
|
||||||
"${CMAKE_SOURCE_DIR}/lib"
|
"${CMAKE_SOURCE_DIR}/lib"
|
||||||
"${CMAKE_SOURCE_DIR}/src/includes"
|
|
||||||
"${CMAKE_BINARY_DIR}/lib/includes"
|
"${CMAKE_BINARY_DIR}/lib/includes"
|
||||||
${CUNIT_INCLUDE_DIRS}
|
${CUNIT_INCLUDE_DIRS}
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue