diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2022-11-17 10:18:15 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-01-20 13:57:18 +0100 |
commit | 33812e4986bc03e42e3d61cc008cae301a6ddf89 (patch) | |
tree | 50d96b8d6938a301114c12c48edc158dd82f3684 /src/utils/cpp/TARGETS | |
parent | 6ffb0d8c9eb3041d8bc5922cbeb90ef714204621 (diff) | |
download | justbuild-33812e4986bc03e42e3d61cc008cae301a6ddf89.tar.gz |
Utils: Add file locking utility class
Diffstat (limited to 'src/utils/cpp/TARGETS')
-rw-r--r-- | src/utils/cpp/TARGETS | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/utils/cpp/TARGETS b/src/utils/cpp/TARGETS index c3c513e2..b835023f 100644 --- a/src/utils/cpp/TARGETS +++ b/src/utils/cpp/TARGETS @@ -89,4 +89,16 @@ , "private-deps": [["src/buildtool/file_system", "file_system_manager"], ["", "libarchive"]] } +, "file_locking": + { "type": ["@", "rules", "CC", "library"] + , "name": ["file_locking"] + , "hdrs": ["file_locking.hpp"] + , "srcs": ["file_locking.cpp"] + , "deps": [["@", "gsl-lite", "", "gsl-lite"]] + , "stage": ["src", "utils", "cpp"] + , "private-deps": + [ ["src/buildtool/file_system", "file_system_manager"] + , ["src/utils/cpp", "path"] + ] + } } |