cmake is the actual command you're running, the two periods ".." refer to the directory one level above the current one. CMake will look for a CMakeList.txt file there, so that's what the command is doing in a nutshell.
If you need to know more about CMake, like setting up custom install directories or enabling various options, just google for existing CMake documentation. Most of the info isn't on the Google Code wiki because it would duplicate existing documentation that already exists online.
Though it would be useful if it mentioned things like how to make a debug-fast build (I always forget what parameters I need to set).
If you need to know more about CMake, like setting up custom install directories or enabling various options, just google for existing CMake documentation. Most of the info isn't on the Google Code wiki because it would duplicate existing documentation that already exists online.
Though it would be useful if it mentioned things like how to make a debug-fast build (I always forget what parameters I need to set).
