* Configuration is now done with files, instead of through command line switches specified in CMakeLists.txt. * Link tests with a static library instead of compiling individual wepoll source files as part of the test executable. This should make the CI run significantly faster.
6 lines
138 B
C
6 lines
138 B
C
#ifdef _MSC_VER
|
|
#define WEPOLL_EXPORT __declspec(dllexport)
|
|
#else /* GCC/Clang */
|
|
#define WEPOLL_EXPORT __attribute__((dllexport))
|
|
#endif
|