Yet another Travis CMake fix because CMake versions across operating systems in isconsistent. Not in love with Travis any longer.

This commit is contained in:
Keith T. Star
2016-01-07 08:52:40 -08:00
parent ee10feea99
commit 0816cef518
3 changed files with 8 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
cmake_minimum_required (VERSION 3.0)
cmake_minimum_required (VERSION 2.8.7)
################################################################################
# TODO: Add licensing and authorship information

2
externals/geoflow_c vendored

Submodule externals/geoflow_c updated: f34f555587...e4021a2aa0

View File

@@ -238,6 +238,12 @@ def main():
'-l', '--log_file', dest='log_file', type='string', default='test.log',
help="Save the test log to FILE.", metavar="FILE"
)
parser.add_option('-b', '--benchmark',
action='store_const', const=1, dest='benchmark',
help="Perform benchmarking."
)
# Parse the command line and extract option values
( options, args ) = parser.parse_args()