mirror of https://github.com/CGAL/cgal
add QT6 version in test results
This commit is contained in:
parent
caecbe29c7
commit
4942b8e918
|
|
@ -475,6 +475,7 @@ sub print_platform_descriptions()
|
||||||
<th>MPFR</th>
|
<th>MPFR</th>
|
||||||
<th>GMP</th>
|
<th>GMP</th>
|
||||||
<th>QT5</th>
|
<th>QT5</th>
|
||||||
|
<th>QT6</th>
|
||||||
<th>LEDA</th>
|
<th>LEDA</th>
|
||||||
<th>CXXFLAGS</th>
|
<th>CXXFLAGS</th>
|
||||||
<th>LDFLAGS</th>
|
<th>LDFLAGS</th>
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,7 @@ sub reformat_results($)
|
||||||
$_ = $line;
|
$_ = $line;
|
||||||
open (PLATFORM_INFO,">${platform}.info") or return;
|
open (PLATFORM_INFO,">${platform}.info") or return;
|
||||||
open (PLATFORM_NEW_RESULTS,">${platform}.new_results") or return;
|
open (PLATFORM_NEW_RESULTS,">${platform}.new_results") or return;
|
||||||
my ($CGAL_VERSION,$LEDA_VERSION,$COMPILER,$TESTER_NAME,$TESTER_ADDRESS,$GMP,$MPFR,$ZLIB,$OPENGL,$BOOST,$QT,$QT4,$QT5,$CMAKE) = ("-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","no");
|
my ($CGAL_VERSION,$LEDA_VERSION,$COMPILER,$TESTER_NAME,$TESTER_ADDRESS,$GMP,$MPFR,$ZLIB,$OPENGL,$BOOST,$QT,$QT4,$QT5,$QT6,$CMAKE) = ("-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","-","no");
|
||||||
my ($LDFLAGS,$CXXFLAGS) = ("", "");
|
my ($LDFLAGS,$CXXFLAGS) = ("", "");
|
||||||
while (! /^------/) {
|
while (! /^------/) {
|
||||||
if(/^\s*$/) {
|
if(/^\s*$/) {
|
||||||
|
|
@ -102,6 +102,9 @@ sub reformat_results($)
|
||||||
if (/Qt5_VERSION = '([^']+)'/) {
|
if (/Qt5_VERSION = '([^']+)'/) {
|
||||||
$QT5="$1";
|
$QT5="$1";
|
||||||
}
|
}
|
||||||
|
if (/Qt6_VERSION = '([^']+)'/) {
|
||||||
|
$QT6="$1";
|
||||||
|
}
|
||||||
if (/BOOST_VERSION = '([^']+)'/) {
|
if (/BOOST_VERSION = '([^']+)'/) {
|
||||||
$BOOST="$1";
|
$BOOST="$1";
|
||||||
}
|
}
|
||||||
|
|
@ -148,6 +151,7 @@ $BOOST
|
||||||
$MPFR
|
$MPFR
|
||||||
$GMP
|
$GMP
|
||||||
$QT5
|
$QT5
|
||||||
|
$QT6
|
||||||
$LEDA_VERSION
|
$LEDA_VERSION
|
||||||
$CXXFLAGS
|
$CXXFLAGS
|
||||||
$LDFLAGS
|
$LDFLAGS
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue