mirror of
https://github.com/Dark98/threeSD.git
synced 2026-07-02 16:49:04 +00:00
412aeaa0d4
Moved MSVC to Github Actions as well.
12 lines
232 B
Bash
Executable File
12 lines
232 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
set -o pipefail
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.13
|
|
export Qt5_DIR=$(brew --prefix)/opt/qt5
|
|
export PATH="/usr/local/opt/ccache/libexec:$PATH"
|
|
|
|
mkdir build && cd build
|
|
cmake .. -DCMAKE_BUILD_TYPE=Release
|
|
make -j4
|