1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-27 15:14:27 +00:00
OpenMW/docker/build.sh

14 lines
160 B
Bash
Raw Permalink Normal View History

2021-10-08 16:36:16 +00:00
#!/usr/bin/env bash
set -xe
# Creating build directory...
mkdir -p build
cd build
# Running CMake...
cmake ../
# Building with $NPROC CPU...
make -j $NPROC