passwordfile/global.h

29 lines
746 B
C
Raw Permalink Normal View History

2016-08-29 15:42:07 +02:00
// Created via CMake from template global.h.in
// WARNING! Any changes to this file will be overwritten by the next CMake run!
#ifndef PASSWORD_FILE_GLOBAL
#define PASSWORD_FILE_GLOBAL
2024-04-02 11:12:34 +02:00
#include "passwordfile-definitions.h"
2016-08-29 15:42:07 +02:00
#include <c++utilities/application/global.h>
#ifdef PASSWORD_FILE_STATIC
2017-05-01 03:25:30 +02:00
#define PASSWORD_FILE_EXPORT
#define PASSWORD_FILE_IMPORT
2016-08-29 15:42:07 +02:00
#else
2019-06-12 21:02:09 +02:00
#define PASSWORD_FILE_EXPORT CPP_UTILITIES_GENERIC_LIB_EXPORT
#define PASSWORD_FILE_IMPORT CPP_UTILITIES_GENERIC_LIB_IMPORT
2016-08-29 15:42:07 +02:00
#endif
2016-11-08 20:02:31 +01:00
/*!
* \def PASSWORD_FILE_EXPORT
* \brief Marks the symbol to be exported by the passwordfile library.
*/
/*!
* \def PASSWORD_FILE_IMPORT
* \brief Marks the symbol to be imported from the passwordfile library.
*/
2016-08-29 15:42:07 +02:00
#endif // PASSWORD_FILE_GLOBAL