repoindex/lib/global.h

28 lines
698 B
C
Raw Permalink Normal View History

2016-09-17 12:59:33 +02:00
// Created via CMake from template global.h.in
// WARNING! Any changes to this file will be overwritten by the next CMake run!
2017-01-22 20:47:14 +01:00
#ifndef LIBREPOINDEX_GLOBAL
#define LIBREPOINDEX_GLOBAL
2016-09-17 12:59:33 +02:00
#include <c++utilities/application/global.h>
2017-01-22 20:47:14 +01:00
#ifdef LIBREPOINDEX_STATIC
2018-09-29 11:38:43 +02:00
#define LIBREPOINDEX_EXPORT
#define LIBREPOINDEX_IMPORT
2016-09-17 12:59:33 +02:00
#else
2019-06-12 21:14:23 +02:00
#define LIBREPOINDEX_EXPORT CPP_UTILITIES_GENERIC_LIB_EXPORT
#define LIBREPOINDEX_IMPORT CPP_UTILITIES_GENERIC_LIB_IMPORT
2016-09-17 12:59:33 +02:00
#endif
2017-01-22 20:47:14 +01:00
/*!
* \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