mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Pass CXX env var through when compiling RGBGFX test binaries
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
[[ -e ./rgbgfx_test ]] || make -C ../.. test/gfx/rgbgfx_test Q= || exit
|
||||
[[ -e ./randtilegen ]] || make -C ../.. test/gfx/randtilegen Q= || exit
|
||||
[[ -e ./rgbgfx_test ]] || make -C ../.. test/gfx/rgbgfx_test Q= ${CXX:+"CXX=$CXX"} || exit
|
||||
[[ -e ./randtilegen ]] || make -C ../.. test/gfx/randtilegen Q= ${CXX:+"CXX=$CXX"} || exit
|
||||
|
||||
trap 'rm -f "$errtmp"' EXIT
|
||||
errtmp="$(mktemp)"
|
||||
|
||||
Reference in New Issue
Block a user