diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-05-21 18:01:10 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-05-21 18:01:10 +0200 |
commit | e05ad6e7ad280082923a1606df055cd9560f45c7 (patch) | |
tree | 4f11d2bb0abc9a71401e87270adca3240278e766 /README.md | |
parent | 3b01cc34a651e49be8738ab5d421486d6be66e7c (diff) | |
download | moony.lv2-e05ad6e7ad280082923a1606df055cd9560f45c7.tar.xz |
update syntax highlight keywords.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -48,12 +48,11 @@ Get more information at: [http://open-music-kontrollers.ch/lv2/moony](http://ope ### Build / install - git clone https://github.com/OpenMusicKontrollers/moony.lv2.git + git clone --recursive https://github.com/OpenMusicKontrollers/moony.lv2.git cd moony.lv2 - git submodule update --init mkdir build cd build - cmake -DCMAKE_C_FLAGS="-std=gnu99" -DCMAKE_BUILD_TYPE="Release" .. + cmake -DCMAKE_C_FLAGS="-std=gnu11" -DCMAKE_BUILD_TYPE="Release" .. make sudo make install @@ -61,7 +60,7 @@ If you want to run the unit test, do instead: . . - cmake -DCMAKE_C_FLAGS="-std=gnu99" -DCMAKE_BUILD_TYPE="Debug" -DBUILD_TESTING=1 .. + cmake -DCMAKE_C_FLAGS="-std=gnu11" -DCMAKE_BUILD_TYPE="Debug" -DBUILD_TESTING=1 .. make ARGS="-VV" make test . |