Add build script for OMI provider and OMI

This commit is contained in:
v-alexjo 2016-02-01 13:14:26 -08:00 committed by Andrew Schwartzmeyer
parent c162c1c19e
commit 03a6a275fe

13
omibuild.sh Executable file
View File

@ -0,0 +1,13 @@
#!/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 ../..