mangos/apps/ci/ci-compile.sh
Meltie2013 c984991f59
Migrate from Travis to GitHub Actions (#140)
* Introducing GitHub Actions

* Update for Eluna
2021-03-05 08:26:32 +00:00

20 lines
355 B
Bash

#!/bin/bash
set -e
# Check for & make directories
test -d _build || mkdir _build
test -d _install || mkdir _install
# Move to build folder
cd _build
# Run CMake Configurations
cmake .. -DCMAKE_INSTALL_PREFIX=../_install -DSOAP=1 -DPLAYERBOTS=1 -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl/
# Check OpenSSL
which openssl
# Compile the Project
make -j 6