Fix typo that caused the C++ headers not to be included in cmake file generating script.

This commit is contained in:
Takatoshi Kondo 2016-10-30 14:08:56 +09:00
parent cfa1ab38cc
commit 6b7becdef0

View File

@ -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