blob: b49da34bb56060491fd058e13c6000924f31da7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// generates export.hpp for each module from compat/linkage.hpp
#pragma once
#include "compat/linkage-macros.hpp"
#ifdef BUILD_${module}
# define OTR_${module}_EXPORT OTR_GENERIC_EXPORT
#else
# define OTR_${module}_EXPORT OTR_GENERIC_IMPORT
#endif
|