1#!/usr/bin/env bash 2# Copyright 2023 Nordic Semiconductor ASA 3# SPDX-License-Identifier: Apache-2.0 4 5# Compile all the applications needed by the bsim tests in these subfolders 6 7#set -x #uncomment this line for debugging 8set -ue 9 10: "${ZEPHYR_BASE:?ZEPHYR_BASE must be set to point to the zephyr root directory}" 11 12source ${ZEPHYR_BASE}/tests/bsim/compile.source 13 14run_in_background ${ZEPHYR_BASE}/tests/bsim/bluetooth/audio_samples/bap_broadcast_sink/compile.sh 15run_in_background ${ZEPHYR_BASE}/tests/bsim/bluetooth/audio_samples/bap_unicast_client/compile.sh 16run_in_background ${ZEPHYR_BASE}/tests/bsim/bluetooth/audio_samples/cap/compile.sh 17run_in_background ${ZEPHYR_BASE}/tests/bsim/bluetooth/audio_samples/ccp/compile.sh 18 19wait_for_background_jobs 20