chore: baseline usable version

This commit is contained in:
dela
2026-06-10 11:17:51 +08:00
commit a2f82a86b6
932 changed files with 172551 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#ifndef QMSETUP_GLOBAL_H
#define QMSETUP_GLOBAL_H
#ifdef _WIN32
# define QMSETUP_DECL_EXPORT __declspec(dllexport)
# define QMSETUP_DECL_IMPORT __declspec(dllimport)
#else
# define QMSETUP_DECL_EXPORT __attribute__((visibility("default")))
# define QMSETUP_DECL_IMPORT
#endif
#endif // QMSETUP_GLOBAL_H