1# Copyright 2021 The Pigweed Authors 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); you may not 4# use this file except in compliance with the License. You may obtain a copy of 5# the License at 6# 7# https://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 12# License for the specific language governing permissions and limitations under 13# the License. 14 15config ZEPHYR_PIGWEED_MODULE 16 depends on STD_CPP17 || STD_CPP2A || STD_CPP20 || STD_CPP2B 17 18if ZEPHYR_PIGWEED_MODULE 19 20rsource "pw_assert_zephyr/Kconfig" 21rsource "pw_base64/Kconfig" 22rsource "pw_bytes/Kconfig" 23rsource "pw_checksum/Kconfig" 24rsource "pw_chrono_zephyr/Kconfig" 25rsource "pw_containers/Kconfig" 26rsource "pw_function/Kconfig" 27rsource "pw_hdlc/Kconfig" 28rsource "pw_interrupt_zephyr/Kconfig" 29rsource "pw_log_zephyr/Kconfig" 30rsource "pw_minimal_cpp_stdlib/Kconfig" 31rsource "pw_multisink/Kconfig" 32rsource "pw_polyfill/Kconfig" 33rsource "pw_preprocessor/Kconfig" 34rsource "pw_result/Kconfig" 35rsource "pw_router/Kconfig" 36rsource "pw_rpc/Kconfig" 37rsource "pw_span/Kconfig" 38rsource "pw_status/Kconfig" 39rsource "pw_stream/Kconfig" 40rsource "pw_string/Kconfig" 41rsource "pw_sync_zephyr/Kconfig" 42rsource "pw_sys_io_zephyr/Kconfig" 43rsource "pw_system/Kconfig" 44rsource "pw_thread_zephyr/Kconfig" 45rsource "pw_tokenizer/Kconfig" 46rsource "pw_varint/Kconfig" 47 48endif # ZEPHYR_PIGWEED_MODULE 49