diff options
author | arcadia-devtools <[email protected]> | 2022-02-18 15:49:59 +0300 |
---|---|---|
committer | arcadia-devtools <[email protected]> | 2022-02-18 15:49:59 +0300 |
commit | b4cb34dfb2619f594d82e512fd9ff7fc97400133 (patch) | |
tree | 6a64ab25a145265287789bceed3f59e953561206 /library/cpp/containers/flat_hash | |
parent | 5e837a820d5be0671fa4096a1cc1e378453e5132 (diff) |
intermediate changes
ref:1a0585d83f27cb6fb5b9c4f68a08177e10faf3b3
Diffstat (limited to 'library/cpp/containers/flat_hash')
-rw-r--r-- | library/cpp/containers/flat_hash/CMakeLists.txt | 9 | ||||
-rw-r--r-- | library/cpp/containers/flat_hash/lib/CMakeLists.txt | 16 |
2 files changed, 25 insertions, 0 deletions
diff --git a/library/cpp/containers/flat_hash/CMakeLists.txt b/library/cpp/containers/flat_hash/CMakeLists.txt new file mode 100644 index 00000000000..a89ce7b34ad --- /dev/null +++ b/library/cpp/containers/flat_hash/CMakeLists.txt @@ -0,0 +1,9 @@ +add_library(cpp-containers-flat_hash) +target_link_libraries(cpp-containers-flat_hash PUBLIC + contrib-libs-cxxsupp + yutil + containers-flat_hash-lib +) +target_sources(cpp-containers-flat_hash PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/containers/flat_hash/flat_hash.cpp +) diff --git a/library/cpp/containers/flat_hash/lib/CMakeLists.txt b/library/cpp/containers/flat_hash/lib/CMakeLists.txt new file mode 100644 index 00000000000..7147ca81da2 --- /dev/null +++ b/library/cpp/containers/flat_hash/lib/CMakeLists.txt @@ -0,0 +1,16 @@ +add_library(containers-flat_hash-lib) +target_link_libraries(containers-flat_hash-lib PUBLIC + contrib-libs-cxxsupp + yutil +) +target_sources(containers-flat_hash-lib PRIVATE + ${CMAKE_SOURCE_DIR}/library/cpp/containers/flat_hash/lib/containers.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/containers/flat_hash/lib/expanders.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/containers/flat_hash/lib/iterator.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/containers/flat_hash/lib/map.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/containers/flat_hash/lib/probings.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/containers/flat_hash/lib/set.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/containers/flat_hash/lib/size_fitters.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/containers/flat_hash/lib/table.cpp + ${CMAKE_SOURCE_DIR}/library/cpp/containers/flat_hash/lib/value_markers.cpp +) |