mirror of
https://github.com/GerbilSoft/rvthtool.git
synced 2025-06-18 11:35:33 -04:00

The Qt5 version included with trusty (5.2.1) attempts to use QStyleOptionViewItem as if it's a QObject, which results in errors: build/src/qrvthtool/widgets/moc_QItemView_Text.cpp:71:10: error: ‘staticMetaObject’ is not a member of ‘QStyleOptionViewItem’ &QStyleOptionViewItem::staticMetaObject, ^ Added separate packages for rvthtool and qrvthtool. Updated COMPILING.md with Qt packages.
33 lines
513 B
YAML
33 lines
513 B
YAML
language: cpp
|
|
|
|
# Build matrix.
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
dist: xenial
|
|
sudo: required
|
|
compiler: gcc
|
|
- os: osx
|
|
compiler: clang
|
|
|
|
# Use Ubuntu 14.04 as the build environment.
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
# Build dependencies.
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- cmake
|
|
- libgmp-dev
|
|
- nettle-dev
|
|
- libudev-dev
|
|
- qtbase5-dev
|
|
- qttools5-dev-tools
|
|
|
|
# Run the build script.
|
|
script: ./travis.sh
|
|
|
|
notifications:
|
|
irc: "ircs://irc.badnik.zone:6697/#GensGS"
|