Cmake cleanup and selected Qt6 adjustments

- Avoid warning using newer CMake by removing obsolete cmake requirements in sub projects
- Several adjustments preparing for Qt6
This commit is contained in:
Magne Sjaastad
2024-04-17 15:06:51 +02:00
committed by GitHub
parent 174123f8b5
commit c759a11888
19 changed files with 13 additions and 32 deletions

View File

@@ -181,7 +181,7 @@ int main( int argc, char* argv[] )
if ( file.open( QIODevice::WriteOnly | QIODevice::Text ) )
{
QTextStream out( &file );
out << portNumber << endl;
out << portNumber << "\n";
}
file.close();