mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-22 18:32:42 +01:00
12 lines
172 B
Bash
Executable File
12 lines
172 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
cd "$APPVEYOR_BUILD_FOLDER/src_rebuild"
|
|
|
|
./premake5 gmake2
|
|
|
|
for config in debug release release_Dev
|
|
do
|
|
make config=$config -j$(nproc)
|
|
done
|