1 Star 0 Fork 26

eddylapis / kcws

forked from koth / kcws 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
BUILD.boost 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
koth 提交于 2016-11-29 08:45 . add icwb2 data process script
# Description:
# The Boost library collection (http://www.boost.org)
#
# Most Boost libraries are header-only, in which case you only need to depend
# on :boost. If you need one of the libraries that has a separately-compiled
# implementation, depend on the appropriate libs rule.
package(default_visibility = ["//visibility:public"])
licenses(["notice"]) # Boost software license
cc_library(
name = "boost",
hdrs = glob([
"boost/**/*.hpp",
"boost/**/*.h",
"boost/**/*.ipp",
]),
includes = [
"."
],
)
cc_library(
name = "filesystem",
srcs = glob([ "libs/filesystem/src/*.cpp"]),
deps = [
":boost",
":system",
],
)
cc_library(
name = "iostreams",
srcs = glob(["libs/iostreams/src/*.cpp"]),
deps = [
":boost",
"@bzip2_archive//:bz2lib",
"@zlib_archive//:zlib",
],
)
cc_library(
name = "program_options",
srcs = glob([ "libs/program_options/src/*.cpp"]),
deps = [
":boost",
],
)
cc_library(
name = "system",
srcs = glob(["libs/system/src/*.cpp"]),
deps = [
":boost",
],
)
Python
1
https://gitee.com/eddylapis/kcws.git
git@gitee.com:eddylapis/kcws.git
eddylapis
kcws
kcws
master

搜索帮助