mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-28 10:44:33 +00:00
12 lines
246 B
C
12 lines
246 B
C
|
#ifndef DEFINES_H
|
||
|
#define DEFINES_H
|
||
|
#include <QtGlobal>
|
||
|
|
||
|
#if QT_VERSION > QT_VERSION_CHECK(5, 13, 0)
|
||
|
#define splitbehavior Qt::SkipEmptyParts
|
||
|
#else
|
||
|
#define splitbehavior QString::SkipEmptyParts
|
||
|
#endif
|
||
|
|
||
|
#endif // DEFINES_H
|