Skip to content
Snippets Groups Projects
Commit e2bc5d1f authored by Anton Piccardo-Selg's avatar Anton Piccardo-Selg
Browse files

Refs #15283 Change export behaviour for System.h

parent d3b88dd7
No related merge requests found
......@@ -60,6 +60,9 @@
// Export/Import declarations
#define DLLExport __declspec(dllexport)
#define DLLImport __declspec(dllimport)
#elif defined(__GNUC__)
#define DLLExport __attribute__ ((visibility ("default")))
#define DLLImport
#else
#define DLLExport
#define DLLImport
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment