PowerShell/omibuild.sh
2016-02-01 17:34:44 -08:00

14 lines
158 B
Bash
Executable file

#!/usr/bin/env bash
# Build OMI
cd src/omi/Unix
./configure --dev
make -j
cd ../../..
# Build the OMI Provider
cd src/omi-provider
cmake .
make -j
cd ../..