23 lines
707 B
Bash
Executable File
23 lines
707 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2023 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Compile all the applications needed by the bsim tests in these subfolders
|
|
|
|
#set -x #uncomment this line for debugging
|
|
set -ue
|
|
: "${ZEPHYR_BASE:?ZEPHYR_BASE must be set to point to the zephyr root directory}"
|
|
|
|
source ${ZEPHYR_BASE}/tests/bsim/compile.source
|
|
|
|
if [ "${BOARD_TS}" == "nrf5340bsim_nrf5340_cpuapp" ]; then
|
|
app=tests/bsim/bluetooth/audio exe_name=bs_${BOARD_TS}_${app}_prj_conf \
|
|
sysbuild=1 compile
|
|
else
|
|
app=tests/bsim/bluetooth/audio conf_overlay=overlay-bt_ll_sw_split.conf \
|
|
exe_name=bs_${BOARD_TS}_${app}_prj_conf \
|
|
sysbuild=1 compile
|
|
fi
|
|
|
|
wait_for_background_jobs
|