Looking through the Installation guide it seemed to indicate that the prefix could be set:
Which seem to indicate that using:Configuration can be done in 4 ways:
1) As a command line parameter, e.g. cmake -DCMAKE_VERBOSE_MAKEFILE=ON .
CMAKE_INSTALL_PREFIX - Use this to change the prefix (default /usr/local). This option behaves like --prefix from autoconf. Package maintainers will probably want to set this to "/usr".
Code: Select all
cmake -DCMAKE_INSTALL_PREFIX=/opt/ZoneMinder
Catch: make keeps blowing up after not being able to access /usr/local, which makes sense since I need this installed into /opt/ZoneMinder.
Q: Is there any way to have CMAKE actually use the install prefix?