• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..07-May-2022-

epa_build/H03-May-2022-31,99929,279

modules/H01-Jun-2019-10,5169,389

test_ada/H03-May-2022-1,5491,247

test_automoc/H03-May-2022-200141

test_fortran/H03-May-2022-682517

test_linux_ipc/H03-May-2022-1,007771

FindPLplot.cmakeH A D01-Jun-20191.9 KiB6759

README.cmake_docH A D01-Jun-20191.7 KiB5030

README.cmake_doc

1Useful CMake documentation.
2
3* The dated but still extremely useful LJ article/tutorial
4(http://www.linuxjournal.com/article/6700).
5
6* The man page which is automatically build by the cmake --help facility
7(should be available with your distribution and also as the last part of
8http://www.cmake.org/HTML/Documentation.html).  To get the same
9documentation in perhaps more convenient form from cmake itself, run
10
11cmake --help-full |less
12
13to get the equivalent of the man page;
14
15cmake --help-command-list |less
16
17to get a complete list of cmake commands; and
18
19cmake --help-command  ADD_SUBDIRECTORY
20
21to, for example, get help with the ADD_SUBDIRECTORY command.
22
23* CMake Documentation page (http://www.cmake.org/HTML/Documentation.html).
24
25* CMake Wiki (http://www.cmake.org/Wiki/CMake).
26
27* CMake FAQ (http://www.cmake.org/Wiki/CMake_FAQ).
28
29* Useful CMake variables (http://www.cmake.org/Wiki/CMake_Useful_Variables).
30
31* How to find installed software
32(http://www.cmake.org/Wiki/CMake_HowToFindInstalledSoftware).
33
34* Platform checks (http://www.cmake.org/Wiki/CMake_HowToDoPlatformChecks)
35
36* Useful intro to CMake from the KDE perspective
37(http://wiki.kde.org/tiki-index.php?page=KDECMakeIntro).
38
39* CMake is an easy language to understand so the cmake modules in
40$cmake_prefix/share/CMake/Modules, where cmake_prefix is the prefix for your
41cmake install, are a good source of ideas.
42
43* KDE and Scribus CMakeLists.txt files and *.cmake modules.  I got access to
44the latest KDE and Scribus work following the instructions at
45http://developer.kde.org/source/anonsvn.html and
46http://docs.scribus.net/index.php?lang=en&page=install1.
47
48* The CMake mailing list (http://www.cmake.org/mailman/listinfo/cmake).
49
50