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.
28 lines
625 B
28 lines
625 B
[cmake]
|
|
version = "2.8...3.8"
|
|
|
|
[project]
|
|
name = "cmkr"
|
|
version = "0.1.4"
|
|
description = "CMakeLists generator from TOML"
|
|
languages = ["CXX"]
|
|
subdirs = ["third_party", "tests"]
|
|
include-after = ["cmake/generate_documentation.cmake"]
|
|
|
|
[target.cmkr_generate_documentation]
|
|
type = "interface"
|
|
cmake-after = """
|
|
generate_documentation()
|
|
"""
|
|
|
|
[target.cmkr]
|
|
type = "executable"
|
|
sources = ["src/*.cpp", "include/*.hpp"]
|
|
include-directories = ["include"]
|
|
compile-features = ["cxx_std_11"]
|
|
link-libraries = ["toml11", "ghc_filesystem", "mpark_variant", "ordered_map", "nlohmann_json"]
|
|
|
|
[[install]]
|
|
targets = ["cmkr"]
|
|
destination = "bin"
|