Skip to content
Snippets Groups Projects
Commit aab46252 authored by Nyx (Neal Orman)'s avatar Nyx (Neal Orman)
Browse files

PATH-194 WIP updating build scripts to include inline files as well as headers

parent 99e36337
No related branches found
No related tags found
No related merge requests found
...@@ -34,6 +34,12 @@ do ...@@ -34,6 +34,12 @@ do
mkdir -p $dstIncludeDir mkdir -p $dstIncludeDir
headers="$source/$project/*.h" headers="$source/$project/*.h"
cp $headers "$dstIncludeDir" cp $headers "$dstIncludeDir"
headers="$source/$project/*.inl"
# not all projects have .inl files
files=$(ls $headers 2> /dev/null | wc -l)
if [ "$files" != "0" ] ; then
cp $headers "$dstIncludeDir"
fi
done done
# Copy the license files into place for packaging # Copy the license files into place for packaging
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment