You've already forked OpenUxAS-SoI
mirror of
https://github.com/AdaCore/OpenUxAS-SoI.git
synced 2026-02-12 13:04:49 -08:00
12 lines
221 B
Bash
Executable File
12 lines
221 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# 1 - change to the directory: OpenUxAS
|
|
cd /UxASDev/OpenUxAS
|
|
|
|
# if builds exists the just run Ninja
|
|
if [ ! -d "build" ]; then
|
|
meson build --buildtype=release
|
|
fi
|
|
|
|
# 3 - compile the code
|
|
ninja -C build test |