I do 'cmake . && make all install'.
This works but installs to /usr/local.
I need to install to different prefix(like, to /usr).
What is cmake+make command line to install to /usr instead of /usr/local ?
Thanks
|
I do 'cmake . && make all install'. I need to install to different prefix(like, to /usr). What is cmake+make command line to install to /usr instead of /usr/local ? Thanks |
||||
|
|
|
You can pass in any CMake variable on the command line, or edit cached variables using ccmake/cmake-gui. On the command line, cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr . && make all install Would configure the project, build all targets and install to the /usr prefix. The type (PATH) is not strictly necessary, but would cause the Qt based cmake-gui to present the directory chooser dialog. |
|||||||||||
|
|
I assumed you are installing through cmake
|
|||||||||||
|