diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-05-15 22:12:22 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2015-05-15 22:12:22 +0200 |
commit | b47427f8a05326febd0851695a026dd191e16f6b (patch) | |
tree | 3c693812937a668c44e03ccaafc60b4775c9de2f /README.md | |
parent | 7e6460e2380b04664b0d92b3a6737174684d5867 (diff) | |
download | moony.lv2-b47427f8a05326febd0851695a026dd191e16f6b.tar.xz |
update build instructions in READMe.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -53,7 +53,7 @@ Get more information at: [http://open-music-kontrollers.ch/lv2/moony](http://ope git submodule update --init mkdir build cd build - cmake -DCMAKE_C_FLAGS="-std=gnu99" .. + cmake -DCMAKE_C_FLAGS="-std=gnu99" -DCMAKE_BUILD_TYPE="Release" .. make sudo make install @@ -61,9 +61,9 @@ If you want to run the unit test, do instead: . . - cmake -DCMAKE_C_FLAGS="-std=gnu99" -DBUILD_TEST=1 .. + cmake -DCMAKE_C_FLAGS="-std=gnu99" -DCMAKE_BUILD_TYPE="Debug" -DBUILD_TESTING=1 .. make - ./test_moony ../test_moony.lua + ARGS="-VV" make test . . |