1
0
mirror of https://github.com/ErnyTech-Archive/JTDLib synced 2024-09-05 14:06:00 +02:00
JTDLib/travis/mac.sh
2018-11-29 17:58:52 +01:00

23 lines
431 B
Bash

#!/bin/bash
# Build deps
brew update
brew upgrade
brew install gperf
# Dirs
cd src/main/jni
mkdir build
mkdir $TRAVIS_BUILD_DIR/out
cd build
# Setup env
export JAVA_HOME=$(dirname $(dirname $(readlink -f $(which javac))))
# Build
cmake -DTD_ENABLE_JNI=ON -DCMAKE_INSTALL_PREFIX:PATH=. -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl/ ..
cmake --build . --target install
# Copy artifacts
cp bin/libtdjni.dylib $TRAVIS_BUILD_DIR/out