summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-04-28 13:00:07 (GMT)
committerGitHub <noreply@github.com>2019-04-28 13:00:07 (GMT)
commitac76b9a7a70b3c828c76442f5977937fcb87811a (patch)
tree13a8a1ba2bc5bd9263f032a2f134789ec3691406 /.travis.yml
parentee61cbba21bb54237f0df87de98dc898e10aafd8 (diff)
downloadDoxygen-ac76b9a7a70b3c828c76442f5977937fcb87811a.zip
Doxygen-ac76b9a7a70b3c828c76442f5977937fcb87811a.tar.gz
Doxygen-ac76b9a7a70b3c828c76442f5977937fcb87811a.tar.bz2
Update .travis.yml
update flex and bison for the OSX build
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 4d42ce2..e20f2fb 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -46,6 +46,8 @@ jobs:
homebrew:
packages:
- ghostscript
+ - bison
+ - flex
casks:
- mactex-no-gui
@@ -79,7 +81,9 @@ before_script:
mv epstopdf/epstopdf.pl /Users/travis/Library/TeX/texbin/epstopdf;
chmod a+x /Users/travis/Library/TeX/texbin/epstopdf;
rm -rf epstopdf*;
- export PATH=/Users/travis/Library/TeX/texbin:/Library/TeX/texbin:$PATH;
+ export CMAKE_INCLUDE_PATH="/usr/local/opt/flex/include;$CMAKE_INCLUDE_PATH";
+ export CMAKE_LIBRARY_PATH="/usr/local/opt/flex/lib;/usr/local/opt/bison/lib;$CMAKE_LIBRARY_PATH";
+ export PATH="/usr/local/opt/flex/bin:/usr/local/opt/bison/bin:/Users/travis/Library/TeX/texbin:/Library/TeX/texbin:$PATH";
fi;
- if [ ! "${OS_NAME}" == "linux-ppc64le" ]; then
conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan;