.travis.yml: Build for Mac OS X. (rvthtool only)

travis-ci doesn't have Qt5 for Mac set up (or it's not immediately
obvious how to access it), so let's disable that for now.
This commit is contained in:
David Korth 2018-09-23 15:32:12 -04:00
parent f23e561b36
commit cf95ac107f
2 changed files with 15 additions and 6 deletions

View File

@ -1,9 +1,14 @@
language: c
language: cpp
# Compiler selection.
compiler:
- clang
- gcc
# Build matrix.
matrix:
include:
- os: linux
dist: trusty
sudo: required
compiler: gcc
- os: osx
compiler: clang
# Use Ubuntu 14.04 as the build environment.
sudo: required

View File

@ -50,4 +50,8 @@ CONFIGURE_FILE("${CMAKE_CURRENT_SOURCE_DIR}/config.nettle.h.in" "${CMAKE_CURRENT
ADD_SUBDIRECTORY(libwiicrypto)
ADD_SUBDIRECTORY(librvth)
ADD_SUBDIRECTORY(rvthtool)
ADD_SUBDIRECTORY(qrvthtool)
# TODO: tracis-ci Qt/Mac
IF(NOT APPLE)
ADD_SUBDIRECTORY(qrvthtool)
ENDIF(NOT APPLE)