Move testflags.py into Tools/

This commit is contained in:
Olly Betts 2015-04-16 10:55:34 +12:00
commit 6207b8bfa3
2 changed files with 2 additions and 2 deletions

View file

@ -96,8 +96,8 @@ before_install:
- $CC --version
- $CXX --version
# Stricter compile flags for examples. Various headers and SWIG generated code prevents full use of -pedantic.
- export cflags=$(./testflags.py --language $SWIGLANG --cflags) && echo $cflags
- export cxxflags=$(./testflags.py --language $SWIGLANG --cxxflags) && echo $cxxflags
- export cflags=$(Tools/testflags.py --language $SWIGLANG --cflags) && echo $cflags
- export cxxflags=$(Tools/testflags.py --language $SWIGLANG --cxxflags) && echo $cxxflags
script:
- echo 'Configuring...' && echo -en 'travis_fold:start:script.1\\r'
- ./autogen.sh && mkdir -p build/build && cd build/build && ../../configure $CONFIGOPTS