You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
697 B
27 lines
697 B
// Created via CMake from template global.h.in |
|
// WARNING! Any changes to this file will be overwritten by the next CMake run! |
|
|
|
#ifndef CPP_UTILITIES_GLOBAL |
|
#define CPP_UTILITIES_GLOBAL |
|
|
|
#include "./application/global.h" |
|
|
|
#ifdef CPP_UTILITIES_STATIC |
|
#define CPP_UTILITIES_EXPORT |
|
#define CPP_UTILITIES_IMPORT |
|
#else |
|
#define CPP_UTILITIES_EXPORT CPP_UTILITIES_GENERIC_LIB_EXPORT |
|
#define CPP_UTILITIES_IMPORT CPP_UTILITIES_GENERIC_LIB_IMPORT |
|
#endif |
|
|
|
/*! |
|
* \def CPP_UTILITIES_EXPORT |
|
* \brief Marks the symbol to be exported by the c++utilities library. |
|
*/ |
|
|
|
/*! |
|
* \def CPP_UTILITIES_IMPORT |
|
* \brief Marks the symbol to be imported from the c++utilities library. |
|
*/ |
|
|
|
#endif // CPP_UTILITIES_GLOBAL
|
|
|