diff options
| author | alexv-smirnov <[email protected]> | 2023-03-15 19:59:12 +0300 |
|---|---|---|
| committer | alexv-smirnov <[email protected]> | 2023-03-15 19:59:12 +0300 |
| commit | 056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11 (patch) | |
| tree | 4740980126f32e3af7937ba0ca5f83e59baa4ab0 /library/cpp/resource | |
| parent | 269126dcced1cc8b53eb4398b4a33e5142f10290 (diff) | |
add library/cpp/actors, ymake build to ydb oss export
Diffstat (limited to 'library/cpp/resource')
| -rw-r--r-- | library/cpp/resource/ut/lib/ya.make | 7 | ||||
| -rw-r--r-- | library/cpp/resource/ut/ya.make | 7 | ||||
| -rw-r--r-- | library/cpp/resource/ya.make | 17 |
3 files changed, 31 insertions, 0 deletions
diff --git a/library/cpp/resource/ut/lib/ya.make b/library/cpp/resource/ut/lib/ya.make new file mode 100644 index 00000000000..a6524b06b8e --- /dev/null +++ b/library/cpp/resource/ut/lib/ya.make @@ -0,0 +1,7 @@ +LIBRARY() + +RESOURCE( + data /x +) + +END() diff --git a/library/cpp/resource/ut/ya.make b/library/cpp/resource/ut/ya.make new file mode 100644 index 00000000000..a07e24f4d82 --- /dev/null +++ b/library/cpp/resource/ut/ya.make @@ -0,0 +1,7 @@ +UNITTEST_FOR(library/cpp/resource/ut/lib) + +SRCS( + resource_ut.cpp +) + +END() diff --git a/library/cpp/resource/ya.make b/library/cpp/resource/ya.make new file mode 100644 index 00000000000..e6961d2bb20 --- /dev/null +++ b/library/cpp/resource/ya.make @@ -0,0 +1,17 @@ +LIBRARY() + +PEERDIR( + library/cpp/blockcodecs/core + library/cpp/blockcodecs/codecs/zstd +) + +SRCS( + registry.cpp + resource.cpp +) + +END() + +RECURSE_FOR_TESTS( + ut +) |
