tldr/pages/common/cmake.md

17 lines
519 B
Markdown
Raw Normal View History

2016-11-30 21:23:28 +00:00
# cmake
> Cross-platform build system generator.
> It generates Makefiles, Visual Studio projects or others, depending on the target system.
2016-11-30 21:23:28 +00:00
2017-05-16 11:37:47 +01:00
- Generate a Makefile and use it to compile a project in the same folder as the source:
2016-11-30 21:23:28 +00:00
`cmake && make`
2016-11-30 21:23:28 +00:00
- Generate a Makefile and use it to compile a project in a separate "build" folder (out-of-source build):
2016-11-30 21:23:28 +00:00
`mkdir -p {{build}} && cd {{build}} && cmake ../ && make`
2016-11-30 21:23:28 +00:00
- Run cmake in interactive mode (it will ask for each variable, instead of using defaults):
2016-11-30 21:23:28 +00:00
`cmake -i`