22 lines
382 B
Python
22 lines
382 B
Python
cc_library(
|
|
name = "headers",
|
|
hdrs = [
|
|
"include/parselink/utility/argparse.h",
|
|
"include/parselink/server.h",
|
|
],
|
|
strip_include_prefix = "include/parselink",
|
|
)
|
|
|
|
cc_binary(
|
|
name = "parselinkd",
|
|
srcs = [
|
|
"main.cpp",
|
|
"server.cpp",
|
|
],
|
|
deps = [
|
|
"headers",
|
|
"@boost//:beast",
|
|
"//source/common"
|
|
],
|
|
)
|