aboutsummaryrefslogtreecommitdiff
path: root/bitbucket-pipelines.yml
diff options
context:
space:
mode:
authorWohlstand <admin@wohlnet.ru>2017-10-20 10:55:03 +0300
committerWohlstand <admin@wohlnet.ru>2017-10-20 10:55:03 +0300
commit80cde5f10a886bb5c5e6ecca84e1d08157543493 (patch)
tree32da9ff90a3f706a4bf81b55310132f4ad2c24aa /bitbucket-pipelines.yml
parentacf564547458ef873aafcc6701c8c6a26cbaca21 (diff)
downloadlibADLMIDI-80cde5f10a886bb5c5e6ecca84e1d08157543493.tar.gz
libADLMIDI-80cde5f10a886bb5c5e6ecca84e1d08157543493.tar.bz2
libADLMIDI-80cde5f10a886bb5c5e6ecca84e1d08157543493.zip
Fixed CMake build
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
+