Added "Open Recent" button to StartupView.

- Also disabled broken MacOS build in travis CI file
This commit is contained in:
Jim Evins
2019-11-12 21:40:43 -05:00
parent 75e613e9f1
commit f09ca36b7b
17 changed files with 269 additions and 59 deletions
+22 -22
View File
@@ -74,28 +74,28 @@ matrix:
skip_cleanup: true
#####################
#
# MacOS build
#
#####################
- name: "MacOS"
os: osx
install:
- brew install qt
before_script:
- git fetch --unshallow # restore repository depth to properly count commits in auto versioning
- git checkout master # re-attach to master to satisfy auto versioning
script:
- mkdir build
- cd build
- cmake .. -DCMAKE_PREFIX_PATH=/usr/local/opt/qt
- make -j4
#- ctest --verbose
- VERSION=$(cat VERSION)
# #####################
# #
# # MacOS build
# #
# #####################
# - name: "MacOS"
# os: osx
#
# install:
# - brew install qt
#
# before_script:
# - git fetch --unshallow # restore repository depth to properly count commits in auto versioning
# - git checkout master # re-attach to master to satisfy auto versioning
#
# script:
# - mkdir build
# - cd build
# - cmake .. -DCMAKE_PREFIX_PATH=/usr/local/opt/qt
# - make -j4
# #- ctest --verbose
# - VERSION=$(cat VERSION)
# #####################