mirror of
https://github.com/build-cpp/cmkr
synced 2026-06-08 13:22:55 +00:00
11 lines
370 B
TOML
11 lines
370 B
TOML
# A minimal `cmake.toml` project:
|
|
|
|
[project]
|
|
name = "basic"
|
|
description = "Minimal example"
|
|
|
|
[target.basic]
|
|
type = "executable"
|
|
sources = ["src/basic.cpp"]
|
|
|
|
# Declares an executable target called `basic` with `src/basic.cpp` as a source file. Equivalent to CMake's [add_executable](https://cmake.org/cmake/help/latest/command/add_executable.html)`(basic src/basic.cpp)`. |