don't coerce the installer to use /usr when cmaking.

(cherry picked from commit c53df545ae)

Conflicts:

	INSTALL
This commit is contained in:
Andrew Kelley
2009-05-06 20:22:12 -07:00
parent 2f5dd60fd9
commit 27a828e579

View File

@@ -5,11 +5,10 @@ then run
mkdir build
cd build
cmake ../ -DCMAKE_INSTALL_PREFIX=/usr
cmake ../
make
sudo make install
This way an out-of-tree build is performed. You can also run "cmake ." directly
in the root of source-tree although this is not recommended. When performing an
out-of-tree build after there's already an in-tree build, make sure to run
@@ -23,3 +22,9 @@ that are going to be built into LMMS or built as plugins. Install the
according libraries and development files if a certain feature is not enabled.
Then remove CMakeCache.txt and run cmake again.
If you want to supply an install prefix to cmake, add the flag:
-DCMAKE_INSTALL_PREFIX=<prefix>
Where <prefix> can be /usr, /usr/local, /opt, etc. The default is /usr/local.