mirror of
1
0
Fork 0
modern-cmake/SUMMARY.md

41 lines
1.3 KiB
Markdown
Raw Normal View History

2017-04-03 13:33:48 +02:00
# Summary
2017-10-18 14:48:28 +02:00
* [An Introduction to Modern CMake](README.md)
2017-10-18 16:20:39 +02:00
* [Installing CMake](chapters/installing.md)
2017-10-17 21:41:41 +02:00
* [Running CMake](chapters/running.md)
2018-03-29 15:53:00 +02:00
* [What's new in CMake](chapters/newcmake.md)
2017-10-18 14:48:28 +02:00
2018-03-29 13:26:47 +02:00
---
2017-10-18 14:48:28 +02:00
## Making a CMakeLists
2017-10-18 15:33:06 +02:00
* [Introduction to the Basics](chapters/basics.md)
2017-10-22 04:36:22 +02:00
* [Variables and the Cache](chapters/options.md)
2017-10-18 15:33:06 +02:00
* [C++11 and Beyond](chapters/cpp11.md)
* [Adding Features](chapters/features.md)
* [How to Structure Your Project](chapters/structure.md)
2018-03-29 19:30:00 +02:00
* [Including Projects](chapters/projects.md)
* [Submodule](chapters/projects/submodule.md)
* [DownloadProject](chapters/projects/download.md)
* [Fetch (3.11)](chapters/projects/fetch.md)
2017-10-23 16:37:42 +02:00
* [Running Other Programs (X)](chapters/programs.md)
2018-03-29 19:30:00 +02:00
* [Testing](chapters/testing.md)
* [GoogleTest](chapters/testing/googletest.md)
* [Catch](chapters/testing/catch.md)
2017-10-23 16:37:42 +02:00
* [Tidy and Format (X)](chapters/tidy.md)
* [IDEs (X)](chapters/IDEs.md)
* [Debugging (X)](chapters/debug.md)
2018-03-10 21:50:41 +01:00
* [Exporting and Installing](chapters/exporting.md)
2017-10-17 21:41:41 +02:00
2018-03-29 13:26:47 +02:00
---
2017-10-18 14:48:28 +02:00
## Specific packages
2018-03-01 22:01:04 +01:00
* [CUDA](specifics/CUDA.md)
* [OpenMP](specifics/OpenMP.md)
2017-10-23 16:37:42 +02:00
* [Boost (X)](specifics/Boost.md)
2018-03-01 22:01:04 +01:00
* [MPI](specifics/MPI.md)
2018-03-29 13:26:47 +02:00
* [ROOT](specifics/ROOT.md)
* [Simple Example](examples/root-simple/README.md)
* [Simple Example CMake 3.11+](examples/root-simple-3.11/README.md)
* [Dictionary Example](examples/root-dict/README.md)