diff options
author | Wohlstand <admin@wohlnet.ru> | 2017-10-20 10:55:03 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2017-10-20 10:55:03 +0300 |
commit | 80cde5f10a886bb5c5e6ecca84e1d08157543493 (patch) | |
tree | 32da9ff90a3f706a4bf81b55310132f4ad2c24aa /bitbucket-pipelines.yml | |
parent | acf564547458ef873aafcc6701c8c6a26cbaca21 (diff) | |
download | libADLMIDI-80cde5f10a886bb5c5e6ecca84e1d08157543493.tar.gz libADLMIDI-80cde5f10a886bb5c5e6ecca84e1d08157543493.tar.bz2 libADLMIDI-80cde5f10a886bb5c5e6ecca84e1d08157543493.zip |
Fixed CMake build
Diffstat (limited to 'bitbucket-pipelines.yml')
-rw-r--r-- | bitbucket-pipelines.yml | 7 |
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 + |