aboutsummaryrefslogtreecommitdiff
path: root/bitbucket-pipelines.yml
diff options
context:
space:
mode:
Diffstat (limited to 'bitbucket-pipelines.yml')
-rw-r--r--bitbucket-pipelines.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml
index 0c5f9ef..e124f6a 100644
--- a/bitbucket-pipelines.yml
+++ b/bitbucket-pipelines.yml
@@ -9,4 +9,9 @@ pipelines:
default:
- step:
script: # Modify the commands below to build your repository.
- - make \ No newline at end of file
+ - mkdir build
+ - cd build
+ - cmake -DCMAKE_INSTALL_PREFIX=output -DCMAKE_BUILD_TYPE=Release -DlibADLMIDI_STATIC=YES -DWITH_MIDIPLAY=ON ..
+ - make -j 4
+ - make install
+