Skip to content

Commit d20f723

Browse files
authored
Create build-mac-library.sh
1 parent 81b8dee commit d20f723

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

build-mac-library.sh

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/bin/bash
2+
3+
echo "=== Unity Named Pipe Mac Build ==="
4+
echo "Generating CMake..."
5+
mkdir build
6+
cd build
7+
cmake ..
8+
9+
echo "Generating Build..."
10+
make
11+
cd ..
12+
13+
echo "Copying Build..."
14+
mkdir artifacts
15+
cp build/UnityNamedPipe.Native/libNativeNamedPipe.dylib artifacts/libNativeNamedPipe.dylib
16+
17+
echo "Done!"

0 commit comments

Comments
 (0)