-
Notifications
You must be signed in to change notification settings - Fork 92
LinuxVST: add missing CMakeLists.txt, remove superfluous CMakeCache.txt, change README #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Then, build and install: | ||
``` | ||
cd airwindows/plugins/LinuxVST/ | ||
cmake |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be:
cd airwindows/plugins/LinuxVST/build
cmake ..
cmake | ||
make | ||
mkdir -p /usr/local/lib/lxvst | ||
cp *.so /usr/local/lib/lxvst |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Most Linux VST hosts actually look for LinuxVSTs in /usr/lib/vst
and many distributions install them there.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some distributions install the vst in /isr/lib64/vst ... Using cmake variable LIBDIR.
@SpotlightKid Thanks for your feedback. |
@magnetophon Your PR was very helpful in getting the plugins compiled on Linux. Maybe my tiny corrections will help others too. |
Fair enough! Thanks again! |
Hi Chris,
Many thanks for releasing these great plugins under a free licence!
I had some trouble building the LinuxVST's; these changes fix that.
I also added @ECH2's note about your builds and made the instructions in the readme more copy paste.