diff options
Diffstat (limited to 'cpp/src/slice2html')
-rw-r--r-- | cpp/src/slice2html/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/src/slice2html/Makefile b/cpp/src/slice2html/Makefile index db66645c7e6..cbee8632156 100644 --- a/cpp/src/slice2html/Makefile +++ b/cpp/src/slice2html/Makefile @@ -18,6 +18,12 @@ OBJS = Gen.o \ SRCS = $(OBJS:.o=.cpp) +ifeq ($(CPP11),yes) +RPATH_DIR = @loader_path/../../lib/c++11 +else +RPATH_DIR = @loader_path/../lib +endif + include $(top_srcdir)/config/Make.rules CPPFLAGS := -I. $(CPPFLAGS) |