Skip to content

Commit

Permalink
Bring DataStorm into Ice 3.8 (#2902)
Browse files Browse the repository at this point in the history
  • Loading branch information
pepone authored Oct 17, 2024
1 parent 019976e commit 8e3d0b0
Show file tree
Hide file tree
Showing 120 changed files with 18,713 additions and 0 deletions.
26 changes: 26 additions & 0 deletions cpp/include/DataStorm/Config.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

#ifndef DATASTORM_CONFIG_H
#define DATASTORM_CONFIG_H

#include "Ice/Config.h"

#if !defined(ICE_BUILDING_DATASTORM) && defined(DATASTORM_API_EXPORTS)
# define ICE_BUILDING_DATASTORM
#endif

#if defined(_MSC_VER) && !defined(ICE_BUILDING_DATASTORM)
# pragma comment(lib, ICE_LIBNAME("DataStorm")) // Automatically link with DataStorm[D].lib
#endif

#ifndef DATASTORM_API
# if defined(DATASTORM_API_EXPORTS)
# define DATASTORM_API ICE_DECLSPEC_EXPORT
# else
# define DATASTORM_API ICE_DECLSPEC_IMPORT
# endif
#endif

#endif
Loading

0 comments on commit 8e3d0b0

Please sign in to comment.