EuropaTools/include/europa/util/DllExport.hpp
modeco80 b58117a5e7 libeuropa: Add DLL export stuff
Also allows us to re-add -fvisibility=hidden to Linux builds
2025-01-17 23:08:51 -05:00

23 lines
No EOL
415 B
C++

//
// EuropaTools
//
// (C) 2021-2025 modeco80 <lily.modeco80@protonmail.ch>
//
// SPDX-License-Identifier: MIT
//
#pragma once
#ifdef europa_EXPORTS
#ifdef _WIN32
#define LIBEUROPA_EXPORT __declspec(dllexport)
#else
#define LIBEUROPA_EXPORT __attribute__((visibility("default")))
#endif
#else
#ifdef _WIN32
#define LIBEUROPA_EXPORT __declspec(dllimport)
#else
#define LIBEUROPA_EXPORT
#endif
#endif