feat:replace boost library with C++11 std library

This commit is contained in:
Livox-SDK
2020-04-01 20:53:55 +08:00
parent 6d06233944
commit d3258bbd97
1936 changed files with 241862 additions and 60153 deletions
+37
View File
@@ -0,0 +1,37 @@
srcdir = @srcdir@
VPATH = @srcdir@
NONPORTABLE = \
testregex@EXEEXT@
PROGRAMS = \
TARGETS = $(PROGRAMS) $(NONPORTABLE)
# bring in rules.mk for standard functionality
@INCLUDE_RULES@
LOCAL_LIBS=../../lib@APR_LIBNAME@.la
CLEAN_TARGETS = testregex@EXEEXT@
INCDIR=../../include
INCLUDES=-I$(INCDIR)
CFLAGS=$(MY_CFLAGS)
all: $(PROGRAMS) $(NONPORTABLE)
check: $(PROGRAMS) $(NONPORTABLE)
for prog in $(PROGRAMS) $(NONPORTABLE); do \
./$$prog; \
if test $$i = 255; then \
echo "$$prog failed"; \
break; \
fi \
done
testregex@EXEEXT@: testregex.lo $(LOCAL_LIBS)
$(LINK) testregex.lo $(LOCAL_LIBS) $(ALL_LIBS)
# DO NOT REMOVE