Browse Source

package/ci: work around iOS Simulator not finding OpenGLES.framework.

pull/157/head
Vladimír Vondruš 10 years ago
parent
commit
102b5bf7b6
  1. 5
      package/ci/travis-ios-simulator.sh

5
package/ci/travis-ios-simulator.sh

@ -67,4 +67,7 @@ cmake .. \
-G Xcode
cmake --build . --config Release | xcpretty
cmake --build . --config Release --target install | xcpretty
CORRADE_TEST_COLOR=ON ctest -V -C Release -E GLTest
# TODO: find a better way to avoid
# Library not loaded: /System/Library/Frameworks/OpenGLES.framework/OpenGLES
# error
DYLD_FALLBACK_LIBRARY_PATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/OpenGLES.framework/ DYLD_FALLBACK_FRAMEWORK_PATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks CORRADE_TEST_COLOR=ON ctest -V -C Release -E GLTest

Loading…
Cancel
Save