mirror of https://github.com/CrimsonTome/tldr.git
496 B
496 B
cmake
Cross-platform build system generator. It generates Makefiles, Visual Studio projects or others, depending on the target system.
- Generate a Makefile and use it to compile a project in the same folder as the source:
cmake && make
- Generate a Makefile and use it to compile a project in a separate folder (out-of-source build):
cd {{build_folder}} && cmake ../ && make
- Run cmake in interactive mode (it will ask for each variable, instead of using defaults):
cmake -i