mirror of
https://github.com/build-cpp/cmkr
synced 2026-06-08 13:22:55 +00:00
13 lines
271 B
TOML
13 lines
271 B
TOML
[project]
|
|
name = "interface"
|
|
description = "Header-only library"
|
|
|
|
[target.mylib]
|
|
type = "interface"
|
|
include-directories = ["include"]
|
|
compile-features = ["cxx_std_11"]
|
|
|
|
[target.example]
|
|
type = "executable"
|
|
sources = ["src/main.cpp"]
|
|
link-libraries = ["mylib"] |