Fix path for CMAKE_PREFIX_PATH in different archs

This commit is contained in:
MINI\jairo 2025-06-19 07:37:52 -05:00
parent f5dcc15710
commit 5b535590d5
1 changed files with 2 additions and 2 deletions

4
External/build.sh vendored
View File

@ -102,9 +102,9 @@ fi
if [[ $RUNNER_OS == 'Windows' ]]; then if [[ $RUNNER_OS == 'Windows' ]]; then
CMAKE_PREFIX_PATH="../SDL/install_output/cmake/" CMAKE_PREFIX_PATH="../SDL/install_output/cmake/"
elif [[ $RUNNER_OS == 'Linux' ]]; then elif [[ $RUNNER_OS == 'Linux' ]]; then
CMAKE_PREFIX_PATH="../SDL/install_output/cmake/SDL3/" CMAKE_PREFIX_PATH="../SDL/install_output/lib/cmake/SDL3/"
elif [[ $RUNNER_OS == 'macOS' ]]; then elif [[ $RUNNER_OS == 'macOS' ]]; then
CMAKE_PREFIX_PATH="../SDL/install_output/cmake/SDL3/" CMAKE_PREFIX_PATH="../SDL/install_output/lib/cmake/SDL3/"
fi fi
# Build SDL_image # Build SDL_image