1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/cmake.md

22 lines
733 B
Markdown
Raw Normal View History

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