mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-26 19:32:17 -05:00
12 lines
177 B
Bash
12 lines
177 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cd soh
|
||
|
make setup -j$(nproc) OPTFLAGS=-O2 DEBUG=0
|
||
|
make -j$(nproc) OPTFLAGS=-O2 DEBUG=0
|
||
|
|
||
|
cd ../OTRGui
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake ..
|
||
|
cmake --build . --config Release
|