Install SeisComP and scanloc ARM64 nightly packages

This commit is contained in:
Enrico Ellguth
2025-10-29 12:34:04 +00:00
parent 2ff097f9d1
commit 165b829fb7
606 changed files with 24438 additions and 16358 deletions

View File

@ -0,0 +1,17 @@
#ifndef SC_MAPVIEWX_PLUGIN_API_H
#define SC_MAPVIEWX_PLUGIN_API_H
#if defined(WIN32) && (defined(SC_MAPVIEWX_PLUGIN_SHARED) || defined(SC_ALL_SHARED))
# if defined(SC_MAPVIEWX_PLUGIN_EXPORTS)
# define SC_MAPVIEWX_PLUGIN_API __declspec(dllexport)
# define SC_MAPVIEWX_PLUGIN_TEMPLATE_EXPORT
# else
# define SC_MAPVIEWX_PLUGIN_API __declspec(dllimport)
# define SC_MAPVIEWX_PLUGIN_TEMPLATE_EXPORT extern
# endif
#else
# define SC_MAPVIEWX_PLUGIN_API
# define SC_MAPVIEWX_PLUGIN_TEMPLATE_EXPORT
#endif
#endif