Skip to content

Commit

Permalink
OpenCL quote paths
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and nyalldawson committed Jun 28, 2020
1 parent 02d3eb0 commit ed9dee5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/qgsopenclutils.cpp
Expand Up @@ -657,13 +657,13 @@ cl::Program QgsOpenClUtils::buildProgram( const QString &source, QgsOpenClUtils:
float version( QgsOpenClUtils::activePlatformVersion().toFloat( &ok ) );
if ( ok && version < 2.0f )
{
program.build( QStringLiteral( "-cl-std=CL%1 -I%2" )
program.build( QStringLiteral( "-cl-std=CL%1 -I\"%2\"" )
.arg( QgsOpenClUtils::activePlatformVersion( ) )
.arg( sourcePath() ).toStdString().c_str() );
}
else
{
program.build( QStringLiteral( "-I%1" )
program.build( QStringLiteral( "-I\"%1\"" )
.arg( sourcePath() ).toStdString().c_str() );
}
}
Expand Down

0 comments on commit ed9dee5

Please sign in to comment.