Skip to content

Commit

Permalink
Fixed not being able to make a static library
Browse files Browse the repository at this point in the history
  • Loading branch information
Immanuel-C committed Aug 18, 2023
1 parent 240f253 commit 83c13f1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ILogCore.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
#define ILOG_CORE_H

#if defined(_WIN32)

#if defined(ILOG_DLL)
#if defined(ILOG_BUILD_DLL)
#define ILOG_API __declspec(dllexport)
#else
#define ILOG_API __declspec(dllimport)
#endif

#else
#define ILOG_API
#endif
#endif

#endif

0 comments on commit 83c13f1

Please sign in to comment.