aboutsummaryrefslogtreecommitdiffhomepage
path: root/update_file_lists.sh
diff options
context:
space:
mode:
Diffstat (limited to 'update_file_lists.sh')
-rwxr-xr-xupdate_file_lists.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/update_file_lists.sh b/update_file_lists.sh
index a064d657..37aa996b 100755
--- a/update_file_lists.sh
+++ b/update_file_lists.sh
@@ -139,6 +139,17 @@ for HEADER in $PUBLIC_HEADERS; do
WINPATH=$(echo $HEADER | sed 's;/;\\;g')
echo "copy \"\${PROTOBUF_SOURCE_WIN32_PATH}\\..\\src\\$WINPATH\" include\\$WINPATH" >> $EXTRACT_INCLUDES_BAT
done
+for PROTO in ${WKT_PROTOS}; do
+ PROTO_DIR=$(dirname "$PROTO")
+ while [ ! "$PROTO_DIR" = "." ]; do
+ echo "mkdir include\\${PROTO_DIR//\//\\}"
+ PROTO_DIR=$(dirname "$PROTO_DIR")
+ done
+done | sort | uniq >> $EXTRACT_INCLUDES_BAT
+for PROTO in $WKT_PROTOS; do
+ WINPATH=${PROTO//\//\\}
+ echo "copy \"\${PROTOBUF_SOURCE_WIN32_PATH}\\..\\src\\$WINPATH\" include\\$WINPATH" >> $EXTRACT_INCLUDES_BAT
+done
################################################################################
# Update bazel BUILD files.