mirror of
https://github.com/boostorg/openmethod.git
synced 2026-01-19 16:32:12 +00:00
12 lines
349 B
Bash
Executable File
12 lines
349 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir -p build_outputs_folder/boost/openmethod
|
|
|
|
python3 dev/flatten.py build_outputs_folder/boost/openmethod.hpp \
|
|
include/boost/openmethod.hpp
|
|
|
|
for header in core compiler shared_ptr unique_ptr; do
|
|
python3 dev/flatten.py "build_outputs_folder/boost/openmethod/$header.hpp" \
|
|
"include/boost/openmethod/$header.hpp"
|
|
done
|