mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
13 lines
253 B
C++
13 lines
253 B
C++
#pragma once
|
|
|
|
#include <QtGlobal>
|
|
|
|
#define CHATTERINO_VERSION "2.0.0"
|
|
|
|
#if defined(Q_OS_WIN)
|
|
#define CHATTERINO_OS "win"
|
|
#elif defined(Q_OS_MACOS)
|
|
#define CHATTERINO_OS "macos"
|
|
#elif defined(Q_OS_LINUX)
|
|
#define CHATTERINO_OS "linux"
|
|
#endif
|