Skip to content

Commit

Permalink
Place libraries under release/
Browse files Browse the repository at this point in the history
  • Loading branch information
bennettgoble committed Apr 2, 2024
1 parent 8317687 commit edd545d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autobuild.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
</map>
<key>manifest</key>
<array>
<string>lib/*.a</string>
<string>lib/release/*.a</string>
</array>
<key>name</key>
<string>darwin</string>
Expand Down Expand Up @@ -106,7 +106,7 @@
</map>
<key>manifest</key>
<array>
<string>lib/libexpatMT.lib</string>
<string>lib/release/libexpatMT.lib</string>
</array>
<key>name</key>
<string>windows</string>
Expand Down
6 changes: 6 additions & 0 deletions build-cmd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ pushd $build
nmake
nmake test
nmake install

mkdir -p "$stage/lib/release"
mv $stage/lib/*.lib "$stage/lib/release/"
;;
darwin*)
opts="-arch $AUTOBUILD_CONFIGURE_ARCH $LL_BUILD_RELEASE"
Expand All @@ -62,6 +65,9 @@ pushd $build
make -j$AUTOBUILD_CPU_COUNT
make test
make install

mkdir -p "$stage/lib/release"
mv $stage/lib/*.a "$stage/lib/release/"
;;
esac

Expand Down

0 comments on commit edd545d

Please sign in to comment.