Fix the installation under some distribution. Under fedora, we need to install LV2 plugins under /usr/lib64/lv2.
Add a LIBDIR variable in cmake.
Example of use:
mkdir build
cmake -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_INSTALL_PREFIX=/usr -DLIBDIR=lib64 ..
make
sudo make install
Fix the installation under some distribution. Under fedora, we need to install LV2 plugins under /usr/lib64/lv2. Add a LIBDIR variable in cmake. Example of use: mkdir build cmake -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_INSTALL_PREFIX=/usr -DLIBDIR=lib64 .. make sudo make install