ZynAddSubFX: fixed identifier for filter resonance controller
[lmms.git] / INSTALL
bloba3c91bc6bbaae8bc42c5b37835ba1e6c164010bb
1 Building LMMS got quite simple since 0.4.0 as everything is managed
2 by cmake now. Therefore make sure you have CMake (>= 2.6.0 recommended) and
3 then run
6 mkdir build
7 cd build
8 cmake ../
9 make
10 sudo make install
12 This way an out-of-tree build is performed. You can also run "cmake ." directly
13 in the root of source-tree although this is not recommended. When performing an
14 out-of-tree build after there's already an in-tree build, make sure to run
15 "make distclean" before running cmake inside build-directory.
17 If you want to use custom compiler flags simply set the environment variables
18 CFLAGS and CXXFLAGS.
20 After running cmake (the 3rd command above) you can see a summary of things
21 that are going to be built into LMMS or built as plugins. Install the
22 according libraries and development files if a certain feature is not enabled.
23 Then remove CMakeCache.txt and run cmake again.
25 If you want to supply an install prefix to cmake, add the flag:
27 -DCMAKE_INSTALL_PREFIX=<prefix>
29 Where <prefix> can be /usr, /usr/local, /opt, etc. The default is /usr/local.