mirror of https://github.com/x64dbg/btparser
22 lines
463 B
TOML
22 lines
463 B
TOML
|
# Reference: https://build-cpp.github.io/cmkr/cmake-toml
|
||
|
[project]
|
||
|
name = "btparser"
|
||
|
|
||
|
[target.btparser]
|
||
|
type = "static"
|
||
|
sources = [
|
||
|
"btparser/lexer.cpp",
|
||
|
"btparser/preprocessor.cpp",
|
||
|
"btparser/types.cpp",
|
||
|
"btparser/typesparser.cpp",
|
||
|
]
|
||
|
headers = ["btparser/*.h"]
|
||
|
include-directories = ["btparser"]
|
||
|
compile-features = ["cxx_std_14"]
|
||
|
|
||
|
[target.test]
|
||
|
condition = "root"
|
||
|
type = "executable"
|
||
|
sources = ["btparser/main.cpp"]
|
||
|
link-libraries = ["btparser"]
|