12 lines
288 B
C
12 lines
288 B
C
|
#ifndef XNAERODYNAMICS_GLOBAL_H
|
||
|
#define XNAERODYNAMICS_GLOBAL_H
|
||
|
|
||
|
#if defined(XNAERODYNAMICS_LIBRARY)
|
||
|
#define XNAERODYNAMICS_EXPORT __attribute__((visibility("default")))
|
||
|
#else
|
||
|
#define XNAERODYNAMICS_EXPORT __attribute__((visibility("default")))
|
||
|
#endif
|
||
|
|
||
|
#endif // XNAERODYNAMICS_GLOBAL_H
|
||
|
|