From d3cd07987b75d92763085930a7b4065f3094a133 Mon Sep 17 00:00:00 2001 From: Mika Fischer Date: Mon, 17 Oct 2016 17:05:07 +0200 Subject: [PATCH 1/2] Fix typo that caused the C++ headers not to be included in CMake project --- Files.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Files.cmake b/Files.cmake index 635872c6..dbfbdbe2 100644 --- a/Files.cmake +++ b/Files.cmake @@ -153,7 +153,7 @@ LIST (APPEND msgpackc_HEADERS include/msgpack/zone.h ) IF (MSGPACK_ENABLE_CXX) - LIST (APPEND msgpack_HEADERS + LIST (APPEND msgpackc_HEADERS include/msgpack.hpp include/msgpack/adaptor/adaptor_base.hpp include/msgpack/adaptor/adaptor_base_decl.hpp From 6b7becdef0210300acffb7aed492d84e12d307d6 Mon Sep 17 00:00:00 2001 From: Takatoshi Kondo Date: Sun, 30 Oct 2016 14:08:56 +0900 Subject: [PATCH 2/2] Fix typo that caused the C++ headers not to be included in cmake file generating script. --- make_file_list.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make_file_list.sh b/make_file_list.sh index 19261a24..772fe20b 100755 --- a/make_file_list.sh +++ b/make_file_list.sh @@ -13,7 +13,7 @@ cat c_headers.tmp | sed -e 's/^/ /g' >> Files.cmake echo ')' >> Files.cmake echo 'IF (MSGPACK_ENABLE_CXX)' >> Files.cmake -echo ' LIST (APPEND msgpack_HEADERS' >> Files.cmake +echo ' LIST (APPEND msgpackc_HEADERS' >> Files.cmake cat cpp_headers.tmp | sed -e 's/^/ /g' >> Files.cmake echo ' )' >> Files.cmake echo 'ENDIF ()' >> Files.cmake