mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
12 lines
208 B
Bash
12 lines
208 B
Bash
addSDL2Path () {
|
|
if [ -e "$1/include/SDL2" ]; then
|
|
export SDL2_PATH="$SDL2_PATH $1/include/SDL2"
|
|
fi
|
|
}
|
|
|
|
if test -n "$crossConfig"; then
|
|
crossEnvHooks+=(addSDL2Path)
|
|
else
|
|
envHooks+=(addSDL2Path)
|
|
fi
|