mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-21 17:34:57 -05:00
15 lines
323 B
C++
15 lines
323 B
C++
#pragma once
|
|
|
|
#ifdef _MSC_VER
|
|
#define EXPORT __declspec(dllexport)
|
|
#else
|
|
#define EXPORT __attribute__((visibility("default")))
|
|
#endif
|
|
|
|
// Helpers helper to enable exporting and importing custom Qt widget symbols
|
|
#ifdef ADVSS_EXPORT_SYMBOLS
|
|
#define ADVSS_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
#define ADVSS_EXPORT Q_DECL_IMPORT
|
|
#endif
|