//mac qt可以运行
#ifdef Q_OS_MAC
qDebug()<<QSysInfo::MacintoshVersion;
#endif //Mac不运行
#ifndef Q_OS_MAC
qDebug()<<QSysInfo::MacintoshVersion;
#endif //Windows qt会运行
#ifndef Q_WS_WIN
#endif
//Windows qt不会运行
#ifndef Q_WS_WIN
#endif
时间: 2024-12-21 00:10:16
//mac qt可以运行
#ifdef Q_OS_MAC
qDebug()<<QSysInfo::MacintoshVersion;
#endif //Mac不运行
#ifndef Q_OS_MAC
qDebug()<<QSysInfo::MacintoshVersion;
#endif //Windows qt会运行
#ifndef Q_WS_WIN
#endif
//Windows qt不会运行
#ifndef Q_WS_WIN
#endif