Skip to content

File export.h

File List > src > export.h

Go to the documentation of this file

// Copyright (c) 2012-2013, IGN France.
// Copyright (c) 2012-2022, Oslandia.
// SPDX-License-Identifier: LGPL-2.0-or-later

#ifndef SFCGAL_EXPORT_H_
#define SFCGAL_EXPORT_H_

//----- DLL MANAGEMENT ------------------

#if defined(_MSC_VER) || defined(__CYGWIN__) || defined(__MINGW32__) ||        \
    defined(__BCPLUSPLUS__) || defined(__MWERKS__)
#define SFCGAL_API_IMPORT __declspec(dllimport)
#define SFCGAL_API_EXPORT __declspec(dllexport)

#define SFCGAL_API_TEMPLATE_EXPORT extern
#define SFCGAL_API_TEMPLATE_IMPORT
#else
#define SFCGAL_API_IMPORT
#define SFCGAL_API_EXPORT
#define SFCGAL_API_TEMPLATE_EXPORT
#define SFCGAL_API_TEMPLATE_IMPORT
#endif

// TODO : split cxx api and capi?

#ifdef SFCGAL_USE_STATIC_LIBS
// static libraries
#define SFCGAL_API
#define SFCGAL_API_TEMPLATE
#else
// shared libraries
#ifdef SFCGAL_BUILD_SHARED
#define SFCGAL_API SFCGAL_API_EXPORT
#define SFCGAL_API_TEMPLATE SFCGAL_API_TEMPLATE_EXPORT
#else
#define SFCGAL_API SFCGAL_API_IMPORT
#define SFCGAL_API_TEMPLATE SFCGAL_API_TEMPLATE_IMPORT
#endif
#endif

#endif // SFCGAL_EXPORT_H_