vote up 1 vote down star

It seems like there should be such an obvious answer, but I've searched and can't find one; what is the difference between cmake and ccmake. I have the Ubuntu package cmake installed, and on my Windows computer, I have the installer from the website, but neither have the command ccmake available... Yet, the tutorials, seem to reference it quite regularly.

It seems that ccmake on Unix is, CMakeSetup on Windows (which is the setup program). But I'm a little confused about it to be honest. Is it just an alternative to manually typing your own CMakeLists.txt files?

flag

4 Answers

vote up 7 vote down check

I think ccmake is the GUI for manipulating files generated by / used by the cmake system.

link|flag
+1: exactly :-) – dfa Aug 3 at 21:54
vote up 3 vote down

ccmake is curses (terminal handling library) interface to CMake.

cmake is the CLI (Command Line Interface)

link|flag
vote up 0 vote down

ccmake (for Unix) and CMakeSetup (for NT) are indeed equivalent: a UI to cmake. They basically call cmake and display how your project is configured, what libraries have been found and where (for libraries referenced with FIND_LIBRARY. It gives you a chance to review and modify these variables before generating the Makefile or project.

link|flag
vote up -1 vote down

Yes. And some more characters.

link|flag
Please could you expand your explanation? – Nick Bolton Aug 3 at 21:23
The some more characters are the ones that stackoverflow demanded from me. – sztomi Aug 3 at 23:25
I have no idea what you mean. – Nick Bolton Aug 23 at 14:03
I responded "Yes.". It was too short, the site didn't let me submit that as an answer. This short answer was however appropriate, because you have provided the exact answer asking if it was correct. – sztomi Aug 24 at 19:04
maybe a simple comment rather than an answer would've made more sense. no big deal though. – michael Aug 27 at 13:16

Your Answer

Get an OpenID
or

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