File indexing completed on 2024-05-12 03:55:00

0001 // SPDX-FileCopyrightText: 2021 Alexander Lohnau <alexander.lohnau@gmx.de>
0002 // SPDX-License-Identifier: LGPL-2.0-or-later
0003 
0004 #include "kruntimeplatform.h"
0005 
0006 QStringList KRuntimePlatform::runtimePlatform()
0007 {
0008     const QString env = QString::fromLocal8Bit(getenv("PLASMA_PLATFORM"));
0009     return QStringList(env.split(QLatin1Char(':'), Qt::SkipEmptyParts));
0010 }