Files
tldr/pages.tr/common/cmake.md
2022-10-31 06:52:35 -03:00

14 lines
496 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# cmake
> Çok platformlu yapım sistem oluşturucusu.
> Hedeflenen sisteme göre Makefile, Visual Studio projeleri ve benzerlerini oluşturur.
> Daha fazla bilgi için: <https://cmake.org/cmake/help/latest/manual/cmake.1.html>.
- Bir Makefile oluştur ve onu aynı dizindeki bir projeyi derlemek için kullan:
`cmake && make`
- Bir Makefile oluştur ve onu farklı bir "yapim" dizinindeki projeyi derlemek için kullan (kaynak-dışı yapım):
`cmake -H. -B {{build}} && make -C {{yapim}}`