repoindex/lib/global.h

28 lines
698 B
C

// Created via CMake from template global.h.in
// WARNING! Any changes to this file will be overwritten by the next CMake run!
#ifndef LIBREPOINDEX_GLOBAL
#define LIBREPOINDEX_GLOBAL
#include <c++utilities/application/global.h>
#ifdef LIBREPOINDEX_STATIC
#define LIBREPOINDEX_EXPORT
#define LIBREPOINDEX_IMPORT
#else
#define LIBREPOINDEX_EXPORT CPP_UTILITIES_GENERIC_LIB_EXPORT
#define LIBREPOINDEX_IMPORT CPP_UTILITIES_GENERIC_LIB_IMPORT
#endif
/*!
* \def LIBREPOINDEX_EXPORT
* \brief Marks the symbol to be exported by the librepoindex library.
*/
/*!
* \def LIBREPOINDEX_IMPORT
* \brief Marks the symbol to be imported from the librepoindex library.
*/
#endif // LIBREPOINDEX_GLOBAL