From 5ddb54ab9069fb4ba1f5adfa4cb50d7a0e96f640 Mon Sep 17 00:00:00 2001 From: Lew Rossman Date: Mon, 29 Oct 2018 11:44:25 -0400 Subject: [PATCH] Deleted include\epanet_export.h It gets generated through the cmake build process. --- include/epanet_export.h | 42 ----------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 include/epanet_export.h diff --git a/include/epanet_export.h b/include/epanet_export.h deleted file mode 100644 index 72113e6..0000000 --- a/include/epanet_export.h +++ /dev/null @@ -1,42 +0,0 @@ - -#ifndef DLLEXPORT_H -#define DLLEXPORT_H - -#ifdef SHARED_EXPORTS_BUILT_AS_STATIC -# define DLLEXPORT -# define EPANET_NO_EXPORT -#else -# ifndef DLLEXPORT -# ifdef epanet_EXPORTS - /* We are building this library */ -# define DLLEXPORT __declspec(dllexport) -# else - /* We are using this library */ -# define DLLEXPORT __declspec(dllimport) -# endif -# endif - -# ifndef EPANET_NO_EXPORT -# define EPANET_NO_EXPORT -# endif -#endif - -#ifndef EPANET_DEPRECATED -# define EPANET_DEPRECATED __declspec(deprecated) -#endif - -#ifndef EPANET_DEPRECATED_EXPORT -# define EPANET_DEPRECATED_EXPORT DLLEXPORT EPANET_DEPRECATED -#endif - -#ifndef EPANET_DEPRECATED_NO_EXPORT -# define EPANET_DEPRECATED_NO_EXPORT EPANET_NO_EXPORT EPANET_DEPRECATED -#endif - -#if 0 /* DEFINE_NO_DEPRECATED */ -# ifndef EPANET_NO_DEPRECATED -# define EPANET_NO_DEPRECATED -# endif -#endif - -#endif /* DLLEXPORT_H */