tldr/pages/common/cmake.md

22 lines
647 B
Markdown
Raw Normal View History

2016-11-30 21:23:28 +00:00
# cmake
> Cross-platform build, testing and packaging automation system.
2021-01-18 11:32:31 +00:00
> CMake uses own shell-like syntax and generates recipes for several build systems.
2020-11-16 18:53:30 +00:00
> More information: <https://cmake.org/cmake/help/latest/manual/cmake.1.html>.
2016-11-30 21:23:28 +00:00
- Generate a build recipe in the current directory with CMakeLists.txt from a project directory:
2016-11-30 21:23:28 +00:00
`cmake {{path/to/project_dir/}}`
2016-11-30 21:23:28 +00:00
- Build with the generated recipe in build_dir (artifacts go to build_dir):
2016-11-30 21:23:28 +00:00
`cmake --build {{path/to/build_dir/}}`
- Install the project:
`cmake --install {{path/to/build_dir/}}`
- Run a custom build target:
`cmake --build {{path/to/build_dir/}} --target {{target_name}}`