feat: add shared library build and example application

This commit is contained in:
user
2026-07-19 17:53:57 +04:00
parent 0e0eb1e8e5
commit 0c5b288833
5 changed files with 107 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
#pragma once
#if defined(_WIN32)
#define LOGGER_API __declspec(dllexport)
#else
#define LOGGER_API __attribute__((visibility("default")))
#endif