travis-config.sh 327 B

1234567891011121314
  1. # Build configuration on Travis.
  2. #
  3. # Defines a CMAKE_ARGS variable for use with cmake
  4. #
  5. # This file is sourced by travis.sh, and exports the variables
  6. # to the environment.
  7. CMAKE_ARGS="\
  8. -DCMAKE_BUILD_TYPE=Release \
  9. -DWEBVIEW_FORCE_WEBKIT=1 \
  10. -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
  11. -DWITH_PYTHONQT=OFF"
  12. export CMAKE_ARGS