Repository for beginners to get started developing C++ with cmkr.
You can use the Gitpod link to try this template in your browser.
Clone this repository and open it in your favorite IDE with CMake support (Visual Studio, CLion, Qt Creator). Everything should work out of the box.
cmake -B build
cmake --build build
Then open the .sln
(Windows) or run make
(Unix) from the build
directory.
Under the hood cmkr generates the CMakeLists.txt
required to build this project from the cmake.toml
file:
[project]
name = "cmkr_for_beginners"
description = "A minimal cmkr project."
[target.hello_world]
type = "executable"
sources = ["src/main.cpp"]