Readme.txt 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. This is CMake, the cross-platform, open-source make system.
  2. CMake is free software under a BSD-like license, see Copyright.txt.
  3. For documentation see the Docs/ directory once you have built CMake
  4. or visit http://www.cmake.org.
  5. Building CMake
  6. ==============
  7. Supported Platforms
  8. -------------------
  9. MS Windows, Mac OS X, Linux, FreeBSD, Solaris, HP-UX, IRIX, BeOS, QNX
  10. Other UNIX-like operating systems may work too out of the box, if not
  11. it shouldn't be a major problem to port CMake to this platform. Contact the
  12. CMake mailing list in this case: http://www.cmake.org/mailman/listinfo/cmake
  13. If you don't have any previous version of CMake already installed
  14. --------------------------------------------------------------
  15. * UNIX/Mac OSX/MinGW/MSYS/Cygwin:
  16. You need to have a compiler and a make installed.
  17. Run the bootstrap script you find the in the source directory of CMake.
  18. You can use the --help option to see the supported options.
  19. You may want to use the --prefix=<install_prefix> option to specify a custom
  20. installation directory for CMake. You can run the bootstrap script from
  21. within the CMake source directory or any other build directory of your
  22. choice. Once this has finished successfully, run make and make install.
  23. So basically it's the same as you may be used to from autotools-based
  24. projects:
  25. $ ./bootstrap; make; make install
  26. * Other Windows:
  27. You need to download and install a binary release of CMake in order to build
  28. CMake. You can get these releases from
  29. http://www.cmake.org/HTML/Download.html . Then proceed with the instructions
  30. below.
  31. You already have a version of CMake installed
  32. ---------------------------------------------
  33. You can build CMake as any other project with a CMake-based build system:
  34. run the installed CMake on the sources of this CMake with your preferred
  35. options and generators. Then build it and install it.
  36. For instructions how to do this, see http://www.cmake.org/HTML/RunningCMake.html