e026b66bbb
Adds a cmake custom target that will build unicorn on first compile and uses this in the build scripts as well. Updates Appveyor and Travis build scripts to work with the new unicorn build, and updates the paths to all of the different artifacts.
15 lines
329 B
Bash
Executable file
15 lines
329 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
set -o pipefail
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.9
|
|
export Qt5_DIR=$(brew --prefix)/opt/qt5
|
|
export UNICORNDIR=$(pwd)/externals/unicorn
|
|
|
|
mkdir build && cd build
|
|
cmake --version
|
|
cmake .. -DYUZU_BUILD_UNICORN=ON -DCMAKE_OSX_ARCHITECTURES="x86_64;x86_64h" -DCMAKE_BUILD_TYPE=Release
|
|
make -j4
|
|
|
|
ctest -VV -C Release
|