mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
05812f107b
* fixed OS X compatibility * adding OS X travis test * ignoring autogenerated files * adding OS X travis test * fixed os x building * fixed os x building * reduced ignore file * v4l osx issue fixed * improved qt5 detection * disabled cleaning of child threads on os x for the time being * fixed avahi on OS X
33 lines
803 B
Bash
Executable File
33 lines
803 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# for executing in non travis environment
|
|
[ -z "$TRAVIS_OS_NAME" ] && TRAVIS_OS_NAME="$( uname -s | tr '[:upper:]' '[:lower:]' )"
|
|
|
|
|
|
######################################
|
|
## COMPILE HYPERION
|
|
|
|
# compile hyperion on osx
|
|
if [[ $TRAVIS_OS_NAME == 'osx' ]]
|
|
then
|
|
procs=$(sysctl -n hw.ncpu | xargs)
|
|
echo "Processes: $procs"
|
|
|
|
mkdir build || exit 1
|
|
cd build
|
|
cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTS=ON -Wno-dev .. || exit 2
|
|
make -j$procs || exit 3
|
|
# make -j$(nproc) package || exit 4 # currently osx(dmg) package creation not implemented
|
|
fi
|
|
|
|
# compile hyperion on linux
|
|
if [[ $TRAVIS_OS_NAME == 'linux' ]]
|
|
then
|
|
mkdir build || exit 1
|
|
cd build
|
|
cmake -DPLATFORM=x86-dev -DCMAKE_BUILD_TYPE=Release .. || exit 2
|
|
make -j$(nproc) || exit 3
|
|
make -j$(nproc) package || exit 4
|
|
fi
|
|
|