mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-07-12 08:06:20 -07:00
11 lines
177 B
Bash
Executable file
11 lines
177 B
Bash
Executable file
#!/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
|