diff --git a/CMakeLists.txt b/CMakeLists.txt index aba556fb3..3aed68d48 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -174,6 +174,7 @@ IF (MSGPACK_ENABLE_CXX) include/msgpack/adaptor/check_container_size.hpp include/msgpack/adaptor/cpp11/array.hpp include/msgpack/adaptor/cpp11/array_char.hpp + include/msgpack/adaptor/cpp11/array_unsigned_char.hpp include/msgpack/adaptor/cpp11/forward_list.hpp include/msgpack/adaptor/cpp11/shared_ptr.hpp include/msgpack/adaptor/cpp11/tuple.hpp @@ -206,6 +207,7 @@ IF (MSGPACK_ENABLE_CXX) include/msgpack/adaptor/vector.hpp include/msgpack/adaptor/vector_bool.hpp include/msgpack/adaptor/vector_char.hpp + include/msgpack/adaptor/vector_unsigned_char.hpp include/msgpack/cpp_config.hpp include/msgpack/detail/cpp03_zone.hpp include/msgpack/detail/cpp11_zone.hpp diff --git a/Makefile.am b/Makefile.am index e385a4d5e..09c089415 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,7 +8,7 @@ DOC_FILES = \ msgpack_vc8.sln EXTRA_DIST = \ - $(DOC_FILES) CMakeLists.txt test/CMakeLists.txt + $(DOC_FILES) CMakeLists.txt test/CMakeLists.txt example pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = msgpack.pc diff --git a/src/Makefile.am b/src/Makefile.am index ee2ac9862..a6066aaa6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -183,6 +183,7 @@ nobase_include_HEADERS += \ ../include/msgpack/adaptor/check_container_size.hpp \ ../include/msgpack/adaptor/cpp11/array.hpp \ ../include/msgpack/adaptor/cpp11/array_char.hpp \ + ../include/msgpack/adaptor/cpp11/array_unsigned_char.hpp \ ../include/msgpack/adaptor/cpp11/forward_list.hpp \ ../include/msgpack/adaptor/cpp11/shared_ptr.hpp \ ../include/msgpack/adaptor/cpp11/tuple.hpp \ @@ -215,6 +216,7 @@ nobase_include_HEADERS += \ ../include/msgpack/adaptor/vector.hpp \ ../include/msgpack/adaptor/vector_bool.hpp \ ../include/msgpack/adaptor/vector_char.hpp \ + ../include/msgpack/adaptor/vector_unsigned_char.hpp \ ../include/msgpack/cpp_config.hpp \ ../include/msgpack/detail/cpp03_zone.hpp \ ../include/msgpack/detail/cpp11_zone.hpp \ diff --git a/test/Makefile.am b/test/Makefile.am index 6166a9aee..70651449e 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -88,4 +88,4 @@ multi_file_SOURCES = multi_file1.cpp multi_file2.cpp buffer_LDADD = -lz -EXTRA_DIST = cases.mpac cases_compact.mpac +EXTRA_DIST = cases.mpac cases_compact.mpac test_allocator.hpp