Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

2 Answers

up vote 80 down vote accepted

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.

share|improve this answer
Found this helpful building a package for Mydumper, which uses CMake. Thx! – astrostl Mar 26 '12 at 14:50
1  
Wondering what :PATH is? It's useful for cmake-gui, helping to choose the widget for that variable. See doc in linux.die.net/man/1/cmake-gui (set section) – albfan Oct 26 '12 at 5:23
I think that the :PATH is necessary. – Hal Canary May 15 at 13:35
They provide hints to the CMake GUI as stated, everything in CMake is effectively a string, but setting PATH, FILEPATH, STRING, BOOL etc help the GUI to present a more appropriate widget. – Marcus D. Hanwell 2 days ago

I assumed you are installing through cmake install command. Then inside your root CMakeLists.txt file you can specify install prefix:

set (CMAKE_INSTALL_PREFIX /usr/)
share|improve this answer
2  
You should avoid doing this if at all possible, as /usr/local is the correct default on Unix systems and bypassing the CMake cache stops users from modifying this without editing build files. If you use the CACHE keyword it would only be set if not already in the cache. – Marcus D. Hanwell May 14 '11 at 18:27
1  
@bediun: Wrong assumption. As I wrote in the question, I am building and installing using 'cmake . && makeall install'. – Andrei May 14 '11 at 18:56
There should not be a trailing / – qdii Feb 18 at 18:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.