Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion test/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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