CMake: Difference between revisions

From David's Wiki
(Created page with "CMake is a tool for setting up projects for multiple development environments. It is typically used for writing cross-platform C and C++ projects. =Resources= * [https://cmak...")
 
No edit summary
Line 2: Line 2:
It is typically used for writing cross-platform C and C++ projects.
It is typically used for writing cross-platform C and C++ projects.


=Resources=
==Getting Started==
===Creating a CMake Repo===
 
===Building a CMake Repo===
<syntaxhighlight lang="bash">
mkdir build
cd build
cmake ..
cmake --build .
</syntaxhighlight>
 
==Resources==
* [https://cmake.org/cmake-tutorial/ Official CMake tutorial]
* [https://cmake.org/cmake-tutorial/ Official CMake tutorial]

Revision as of 20:40, 31 January 2020

CMake is a tool for setting up projects for multiple development environments. It is typically used for writing cross-platform C and C++ projects.

Getting Started

Creating a CMake Repo

Building a CMake Repo

mkdir build
cd build
cmake ..
cmake --build .

Resources