| 95 | | If you find a CMakeLists.txt file in a package you are porting chances are it's using CMake. If you don't already have CMake installed go ahead and grab the [http://www.fileden.com/files/2008/8/23/2062382/packages/cmake-2.6.3-gcc2-haiku-2009-02-25.zip binary] and install it. Then try running cmake CMakeLists.txt or for the interactive ncurses version try ccmake CMakeLists.txt. Once the configuring is done, you use the normal make, make install, type commands, note the output may look different than you are used to. One thing you might notice with CMake is that configuring, fixing and configuring may go faster since it keeps track of where in the configure process it left of at. Feel free to update these notes as we will be seeing CMake more and more. [http://www.cmake.org/cmake/help/documentation.html CMake documentation] |
| | 95 | If you find a CMakeLists.txt file in a package you are porting chances are it's using CMake. If you don't already have CMake installed go ahead and use 'installoptionalpackage cmake' to install it. Then try running 'cmake .' or for the interactive ncurses version try 'ccmake .' Once the configuring is done, you use the normal make, make install, type commands, note the output may look different than you are used to. One thing you might notice with CMake is that configuring, fixing and configuring may go faster since it keeps track of where in the configure process it left off at. Feel free to update these notes as we will be seeing CMake more and more. [http://www.cmake.org/cmake/help/documentation.html CMake documentation] |