Trying to compile LMMS 1.0.2 without VST

Having trouble with LMMS? Ask about it here.
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. :)
you can just run cmake with -DWANT_VST=no
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.
sure.