Plasma Engine  2.0
Loading...
Searching...
No Matches
CoreDLL.h
1#pragma once
2
3#include <Foundation/Basics.h>
4
5// Configure the DLL Import/Export Define
6#if PL_ENABLED(PL_COMPILE_ENGINE_AS_DLL)
7# ifdef BUILDSYSTEM_BUILDING_CORE_LIB
8# define PL_CORE_DLL PL_DECL_EXPORT
9# define PL_CORE_DLL_FRIEND PL_DECL_EXPORT_FRIEND
10# else
11# define PL_CORE_DLL PL_DECL_IMPORT
12# define PL_CORE_DLL_FRIEND PL_DECL_IMPORT_FRIEND
13# endif
14#else
15# define PL_CORE_DLL
16# define PL_CORE_DLL_FRIEND
17#endif