cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
16 lines
309 B
C
16 lines
309 B
C
/*
|
|
This file is part of the KDE libraries
|
|
SPDX-FileCopyrightText: 2024 Nicolas Fella <nicolas.fella@gmx.de>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
inline bool isWindowsCI()
|
|
{
|
|
#ifdef Q_OS_WIN
|
|
return qEnvironmentVariable("CI") == QLatin1String("true");
|
|
#else
|
|
return false;
|
|
#endif
|
|
}
|