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/cmake.toml

26 lines
537 B

4 years ago
[cmake]
4 years ago
minimum = "3.15"
4 years ago
4 years ago
[project]
name = "cmkr"
4 years ago
version = "0.1.3"
inject-after = "add_subdirectory(third_party)"
[[target]]
4 years ago
name = "cmkrlib"
type = "static"
sources = ["src/cmkrlib/*.cpp", "src/cmkrlib/*.hpp", "include/*.h"]
include-directories = ["include"]
compile-features = ["cxx_std_11"]
link-libraries = ["toml11", "ghc_filesystem", "mpark_variant"]
[[target]]
4 years ago
name = "cmkr"
type = "executable"
sources = ["src/main.cpp"]
link-libraries = ["cmkrlib"]
4 years ago
[[install]]
targets = ["cmkr"]
destination = "${CMAKE_INSTALL_PREFIX}/bin"