-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improvements to third party packages.
This adds the following new packages: * fmt * ctpl * libpqxx * progress_cpp * subprocess Additionally: * Add a clang++ target to llvm. * Simplify tbb dependency. Signed-off-by: format 20.02.05 <github.com/ChrisCummins/format>
- Loading branch information
1 parent
815e9c4
commit 5120c9b
Showing
8 changed files
with
120 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
cc_library( | ||
name = "ctpl", | ||
hdrs = [ | ||
"ctpl.h", | ||
"ctpl_stl.h", | ||
], | ||
visibility = ["//visibility:public"], | ||
deps = [ | ||
"@boost//:lockfree", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# A modern formatting library. https://fmt.dev | ||
|
||
cc_library( | ||
name = "fmt", | ||
srcs = glob(["src/*.cc"]), | ||
hdrs = glob(["include/fmt/*.h"]), | ||
copts = ["-Iexternal/fmt/include"], | ||
strip_include_prefix = "include", | ||
visibility = ["//visibility:public"], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# A flexible ASCII progress-bar for C++. | ||
# https://github.com/prakhar1989/progress-cpp | ||
|
||
licenses(["notice"]) # MIT. | ||
|
||
cc_library( | ||
name = "progress_cpp", | ||
hdrs = ["ProgressBar.hpp"], | ||
include_prefix = "progress_cpp", | ||
visibility = ["//visibility:public"], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Subprocessing with modern C++. | ||
# https://github.com/arun11299/cpp-subprocess | ||
|
||
licenses(["notice"]) # MIT. | ||
|
||
cc_library( | ||
name = "subprocess", | ||
hdrs = ["subprocess.hpp"], | ||
include_prefix = "subprocess", | ||
visibility = ["//visibility:public"], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters