diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2018-08-06 01:56:50 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2018-08-06 01:56:50 +0300 |
commit | 1ab34e88a326c396fbb42c503eb4ffa56fa0a148 (patch) | |
tree | 4f2d6ada0ab0bd1d64947a71c5492a29be7c8dbf /bitbucket-pipelines.yml | |
parent | 0a003c8bc12514a5586f2f0e40559fcbf6607883 (diff) | |
parent | 0e2807a9d4c8c900e85c9b33ba96c69a82c58a68 (diff) | |
download | libADLMIDI-1ab34e88a326c396fbb42c503eb4ffa56fa0a148.tar.gz libADLMIDI-1ab34e88a326c396fbb42c503eb4ffa56fa0a148.tar.bz2 libADLMIDI-1ab34e88a326c396fbb42c503eb4ffa56fa0a148.zip |
Merge branch 'master' into stable
Diffstat (limited to 'bitbucket-pipelines.yml')
-rw-r--r-- | bitbucket-pipelines.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 972197d..5c5bb4c 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -9,11 +9,12 @@ pipelines: default: - step: script: # Modify the commands below to build your repository. + - apt install software-properties-common + - add-apt-repository --yes ppa:george-edison55/cmake-3.x - apt-get update - - apt-get install -y cmake libsdl2-dev + - apt-get install -y libsdl2-dev ninja-build cmake - mkdir build - cd build - - cmake -DCMAKE_INSTALL_PREFIX=output -DCMAKE_BUILD_TYPE=Release -DlibADLMIDI_STATIC=YES -DWITH_MIDIPLAY=ON .. - - make -j 4 - - make install + - cmake -G "Ninja" -DCMAKE_INSTALL_PREFIX=output -DCMAKE_BUILD_TYPE=Release -DlibADLMIDI_STATIC=YES -DlibADLMIDI_SHARED=YES -DWITH_MIDIPLAY=ON .. + - cmake --build . --config Release --target install -- -j 4 |