mirror of
https://github.com/msgpack/msgpack-c
synced 2026-06-08 16:11:40 +00:00
ec8895155c
Update the version to 6.0.0.
10 lines
264 B
Bash
Executable File
10 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find include -name "*.hpp" -or -name "*.h" | sed -e 's/\s\+/\n/g' | LC_ALL=C sort > cpp_headers.tmp
|
|
|
|
echo 'SET (msgpack-cxx_HEADERS' > Files.cmake
|
|
cat cpp_headers.tmp | sed -e 's/^/ /g' >> Files.cmake
|
|
echo ')' >> Files.cmake
|
|
|
|
rm -f cpp_headers.tmp
|