Update setup script naming convention

This commit is contained in:
Dan Paulat 2025-06-29 23:09:37 -05:00
parent b89938b48a
commit 76c6ac2ccd
14 changed files with 91 additions and 1 deletions

View file

@ -1,18 +0,0 @@
#!/bin/bash
script_dir="$(dirname "$(readlink -f "$0")")"
export build_dir="$(readlink -f "${1:-${script_dir}/../build-debug}")"
export conan_profile=${2:-scwx-linux_gcc-11}
export generator="Ninja Multi-Config"
export qt_base=/opt/Qt
export qt_arch=gcc_64
# Assign user-specified Python Virtual Environment
[ "${3:-}" = "none" ] && unset venv_path || export venv_path="$(readlink -f "${3:-${script_dir}/../.venv}")"
# FIXME: aws-sdk-cpp fails to configure using Ninja Multi-Config
echo "Ninja Multi-Config is not supported in Linux"
read -p "Press Enter to continue..."
# Perform common setup
# "${script_dir}/lib/setup-common.sh"