-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor to use shared mediafx-build.sh script
- Loading branch information
1 parent
957ef9c
commit d9b31f4
Showing
10 changed files
with
38 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Copyright (C) 2024 Andrew Wason | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
export QTDIR=${BUILD_ROOT}/installed/${QT_VER}/macos | ||
export PATH=${QTDIR}/bin:$PATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Copyright (C) 2024 Andrew Wason | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
export GALLIUM_DRIVER=softpipe | ||
export LIBGL_ALWAYS_SOFTWARE=1 | ||
export DRI_NO_MSAA=1 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
# Copyright (C) 2023 Andrew Wason | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
CURRENT=${BASH_SOURCE%/*} | ||
source "$CURRENT/versions" | ||
|
||
BUILD_TYPE=${BUILD_TYPE:-Release} | ||
MEDIAFX_BUILD="${BUILD_ROOT}/${BUILD_TYPE}" | ||
mkdir -p "$MEDIAFX_BUILD" | ||
cd "$MEDIAFX_BUILD" | ||
(cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE --install-prefix "${QTDIR}" ../../.. && cmake --build . && cmake --install .) || exit 1 | ||
if [[ -v MEDIAFX_TEST ]]; then | ||
make test CTEST_OUTPUT_ON_FAILURE=1 ARGS="${MEDIAFX_TEST}" || exit 1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters