Revision 4d0e5818cddd539094c4d1ce6968962365417662 authored by project_120_bot2 on 26 October 2023, 11:35:04 UTC, committed by Lars Bilke on 26 October 2023, 16:42:04 UTC
1 parent a8c26ad
Raw File
ExportSymbol.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

#ifndef OGS_EXPORT_SYMBOL
#if defined(WIN32) || defined(_WIN32)
#define OGS_EXPORT_SYMBOL __declspec(dllexport)
#else
#define OGS_EXPORT_SYMBOL __attribute__((visibility("default")))
#endif
#endif  // defined(OGS_EXPORT_SYMBOL)
back to top