Browse Source

package/ci: make sure TARGET_EGL is always non-empty.

If not set, it's likely treated as OFF by CMake, but don't rely on that.
pull/680/head
Vladimír Vondruš 10 months ago
parent
commit
e248dcdaca
  1. 1
      package/ci/circleci.yml

1
package/ci/circleci.yml

@ -286,6 +286,7 @@ commands:
if [ "$BUILD_STATIC" != "ON" ]; then export BUILD_STATIC=OFF; fi
if [ "$BUILD_DEPRECATED" != "OFF" ]; then export BUILD_DEPRECATED=ON; fi
if [ "$BUILD_APPLICATIONS" != "OFF" ]; then export BUILD_APPLICATIONS=ON; fi
if [ "$TARGET_EGL" != "ON" ]; then export TARGET_EGL=OFF; fi
if [ "$TARGET_GLES2" == "ON" ]; then export TARGET_GLES3=OFF; fi
if [ "$TARGET_GLES2" == "OFF" ]; then export TARGET_GLES3=ON; fi
./package/ci/<< parameters.script >>

Loading…
Cancel
Save