2025-02-16 12:41:59 +01:00
|
|
|
#!/bin/bash -e
|
|
|
|
# Copyright (c) 2021, Dell Inc. or its subsidiaries. All rights reserved.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# See the LICENSE file for details.
|
|
|
|
#
|
|
|
|
# This file is part of NVMe STorage Appliance Services (nvme-stas).
|
|
|
|
#
|
|
|
|
# Authors: Martin Belanger <Martin.Belanger@dell.com>
|
|
|
|
#
|
|
|
|
BUILD_DIR="${BUILD_DIR:-.build}"
|
|
|
|
|
|
|
|
if [ ! -d ${BUILD_DIR} ]; then
|
2025-02-16 12:53:58 +01:00
|
|
|
exec meson setup ${BUILD_DIR} "$@"
|
2025-02-16 12:41:59 +01:00
|
|
|
else
|
|
|
|
exec meson configure ${BUILD_DIR} "$@"
|
|
|
|
fi
|
|
|
|
|