syncthingtray/testhelper/global.h

29 lines
827 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 SYNCTHINGTESTHELPER_GLOBAL
#define SYNCTHINGTESTHELPER_GLOBAL
#include "syncthingtesthelper-definitions.h"
#include <c++utilities/application/global.h>
#ifdef SYNCTHINGTESTHELPER_STATIC
#define SYNCTHINGTESTHELPER_EXPORT
#define SYNCTHINGTESTHELPER_IMPORT
#else
#define SYNCTHINGTESTHELPER_EXPORT CPP_UTILITIES_GENERIC_LIB_EXPORT
#define SYNCTHINGTESTHELPER_IMPORT CPP_UTILITIES_GENERIC_LIB_IMPORT
#endif
/*!
* \def SYNCTHINGTESTHELPER_EXPORT
* \brief Marks the symbol to be exported by the syncthingtesthelper library.
*/
/*!
* \def SYNCTHINGTESTHELPER_IMPORT
* \brief Marks the symbol to be imported from the syncthingtesthelper library.
*/
#endif // SYNCTHINGTESTHELPER_GLOBAL