third_party.pigweed.src/pw_kvs/CMakeLists.txt
Ewout van Bekkum 1d0aa6dd9e pw_blob_store & pw_kvs: Use Borrowable<KeyValueStore>
Migrates pw_blob_store and pw_kvs's test interfaces to use a
borrowable key value store.

Requires: pigweed-internal:16220
Requires: pigweed-internal:16240
Change-Id: Ia8ce6196b169f2d4a8f15f9fbdc8819d1bb72b8a
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/61791
Pigweed-Auto-Submit: Ewout van Bekkum <ewout@google.com>
Reviewed-by: Armando Montanez <amontanez@google.com>
Commit-Queue: Auto-Submit <auto-submit@pigweed.google.com.iam.gserviceaccount.com>
Commit-Queue: Ewout van Bekkum <ewout@google.com>
2021-10-20 23:25:49 +00:00

38 lines
1.0 KiB
CMake

# Copyright 2020 The Pigweed Authors
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
include($ENV{PW_ROOT}/pw_build/pigweed.cmake)
pw_auto_add_simple_module(pw_kvs
PUBLIC_DEPS
pw_containers
pw_status
pw_sync.borrow
PRIVATE_DEPS
pw_assert
pw_bytes
pw_checksum
pw_log
pw_string
)
target_compile_definitions(
pw_kvs
PUBLIC PW_FLASH_TEST_SECTORS=6
PUBLIC PW_FLASH_TEST_SECTOR_SIZE=4096
PUBLIC PW_FLASH_TEST_ALIGNMENT=1
PUBLIC PW_FLASH_TEST_ITERATIONS=2
PUBLIC PW_FLASH_TEST_WRITE_SIZE=256
)