-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcppm.toml
47 lines (37 loc) · 983 Bytes
/
cppm.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "cppm"
version = "0.0.13"
description = "c++ cmake maker use to toml like Cargo"
git = "https://github.com/injae/cppm.git"
#tool-version = "dev"
[cmake]
include = ["cmake/cppm_install.cmake"]
[features]
default = [ "json", "toml" ] # default flags set ON
json = ["serdepp/json"]
toml = ["serdepp/toml11"]
test = ["$USE_CPPM_TEST"] # default value is OFF
[lib]
name = "cppm-core"
type ="header-only"
[[bin]]
name = "cppm"
source = ["src/.*.cpp"]
[[test]]
name = "cppm-test-check"
source = ["tests/test.cpp"]
[[example]]
name = "cppm-core-load"
source = ["examples/example.cpp"]
#[workspace]
# member = ["libs/hashpp"]
[dependencies]
range-v3 = "git"
nlpo = "git"
#serdepp = {version="git", features=[ "xxx" ], default_features=false}
serdepp = {version="git", link="public", features=["json", "toml"]}
hash-lib = "git"
[dev-dependencies]
Catch2 = "2.9.1"
#[target.all-osx-clang.dependencies]
# dbg-macro = "git"