csound / plugins

Repository for Csound plugins which were originally in the main repository, and for new plugins as well.
GNU Lesser General Public License v2.1
11 stars 11 forks source link

make install path has error #7

Closed anton-k closed 2 years ago

anton-k commented 2 years ago

make install copies plugin so-files to the impossible path. Notice the space in between:

 /usr/local/ /usr/local/lib/csound/plugins64-6.0/libfluidOpcodes.so
vlazzarini commented 2 years ago

The CMakeLists.txt script installs to

''' ${CMAKE_INSTALL_PREFIX}/lib/csound/plugins64-6.0 '''

or if -DLIB64=1 is used

''' ${CMAKE_INSTALL_PREFIX}/lib/csound/plugins64-6.0 '''

So make sure the CMAKE_INSTALL_PREFIX is set to where you want it to be.

anton-k commented 2 years ago

Can you please document this. As it's not mentioned in the build instructions

anton-k commented 2 years ago

When I follow README it's done not as expected and fails to install the compiled sos

vlazzarini commented 2 years ago

If you run cmake -LA you should get all cmake build options.

This is the same as the Csound library build.

vlazzarini commented 2 years ago

There was a ticket today asking for it to be changed so I did it. However I am not committing to maintaining this repository. It does not have a maintainer so any requests might be delayed.