You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cmkr/README.md

113 lines
2.9 KiB

4 years ago
# cmkr
4 years ago
cmkr, pronounced "cmaker", is A CMakeLists.txt generator from TOML. Still WIP.
## Building
cmkr requires a C++17 compiler, cmake >= 3.14 and git. It depends on toml11 by ToruNiina, which is added as a git submodule.
```
git clone https://github.com/moalyousef/cmkr
cd cmkr
cmake -Bbin
cmake --build bin
```
## Usage
4 years ago
cmkr parses cmake.toml files (using toml11) at the project directory. A basic hello world format with the minimum required fields:
```toml
[cmake]
minimum = "3.14"
4 years ago
[project]
name = "app"
version = "0.1.0"
[[bin]]
name = "app"
type = "exe"
sources = ["src/main.cpp"]
```
This project's cmake.toml:
```toml
[cmake]
minimum = "3.14"
4 years ago
[project]
name = "cmkr"
version = "0.1.0"
[fetch-content]
toml11 = { GIT_REPOSITORY = "https://github.com/ToruNiina/toml11" }
4 years ago
[[bin]]
name = "cmkrlib"
type = "static"
4 years ago
sources = ["src/cmake.cpp", "src/gen.cpp", "src/help.cpp", "src/build.cpp", "src/error.cpp"]
include-dirs = ["include"]
4 years ago
features = ["cxx_std_17"]
link-libs = ["toml11::toml11"]
4 years ago
[[bin]]
name = "cmkr"
type = "exe"
4 years ago
sources = ["src/main.cpp", "src/args.cpp"]
link-libs = ["cmkrlib"]
```
Currently supported fields:
```toml
4 years ago
[cmake] # required for top-level project
minimum = "3.14" # required
subdirs = [] # optional
bin-dir = "bin" # optional
cpp-flags = [] # optional
c-flags = [] # optional
link-flags = [] # optional
4 years ago
generator = "Ninja" # optional
arguments = ["CMAKE_TOOLCHAIN_FILE=/path/to/toolchain"] # optional
4 years ago
[project] # required per project
name = "app" # required
version = "0.1.0" # required
4 years ago
[find-package] # optional, runs find_package, use "*" to ignore version
Boost = { version = "1.74.0", required = false, components = ["system"] } # optional
spdlog = "*"
4 years ago
[fetch-content] # optional, runs fetchContent
4 years ago
toml11 = { GIT_REPOSITORY = "https://github.com/ToruNiina/toml11", GIT_TAG = "v3.5.0" } # optional
[options] # optional
APP_BUILD_STUFF = false # optional
APP_OTHER_STUFF = { comment = "does other stuff", value = false } # optional
4 years ago
[[bin]] # required, can define several binaries
4 years ago
name = "app" # required
type = "exe" # required (exe || shared || static)
sources = ["src/*.cpp"] # required, supports globbing
include-dirs = [] # optional
4 years ago
features = [] # optional
4 years ago
defines = [] # optional
link-libs = [] # optional
```
The cmkr executable can be run from the command-line:
```
Usage: cmkr [arguments]
arguments:
init [exe|shared|static] Starts a new project in the same directory.
gen Generates CMakeLists.txt file.
4 years ago
build <extra cmake args> Run cmake and build.
clean Clean the build directory.
help Show help.
version Current cmkr version.
```
4 years ago
The build command invokes cmake and the default build-system on your platform (unless a generator is specified), it also accepts extra cmake build arguments:
```
4 years ago
cmkr build --config Release
```
## Roadmap
- Support more fields.
4 years ago
- Support conditional cmake args somehow!