mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-04 22:17:45 +08:00
This script installs libiodbc from brew and adds it to CPLUS_INCLUDE_PATH and LIBRARY_PATH thus enabling configure to find it and thus enabling odbc support for qt build on macOS. Task-number: QTBUG-58956 Change-Id: I7f865800b580a87afcc480534da57ee546c74406 Reviewed-by: Antti Kokko <antti.kokko@qt.io>
8 lines
110 B
Bash
Executable File
8 lines
110 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Install libiodbc
|
|
|
|
set -ex
|
|
|
|
BASEDIR=$(dirname "$0")
|
|
$BASEDIR/../common/macos/libiodbc.sh
|