Page 1 of 1

Trying to compile LMMS 1.0.2 without VST

Posted: Fri Jun 06, 2014 12:35 am
by sunnystormy
Every time I try to compile the LMMS source with CMake, it keeps hanging on the "RemoteVstPlugin" portion of the process.

Is there a way I can configure the build process to just skip VST completely? I don't want to use it (am a Linux user).

Thank you.

--EDIT--

I figured this out. I set the "WANT_VST" parameter inside the CMakeLists.txt file to "OFF". This took care of my problem, and the source compiled as expected. I hope this helps other people in the same situation. :)

Re: Trying to compile LMMS 1.0.2 without VST

Posted: Fri Jun 06, 2014 3:17 am
by diiz
you can just run cmake with -DWANT_VST=no

Re: Trying to compile LMMS 1.0.2 without VST

Posted: Sun Jun 08, 2014 1:13 am
by sunnystormy
Cool, thanks for the tip!

Now, would I add that parameter at the end of the line where I also set the INSTALL_PREFIX?

For example:

cmake -DCMAKE_INSTALL_PREFIX=/..prefix/ -DWANT_VST=no

Let me know if that's right.

Re: Trying to compile LMMS 1.0.2 without VST

Posted: Sun Jun 08, 2014 1:31 am
by diiz
sure.