Plasma Engine  2.0
Loading...
Searching...
No Matches
EditorFrameworkDLL.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_EDITORFRAMEWORK_LIB
8# define PL_EDITORFRAMEWORK_DLL PL_DECL_EXPORT
9# else
10# define PL_EDITORFRAMEWORK_DLL PL_DECL_IMPORT
11# endif
12#else
13# define PL_EDITORFRAMEWORK_DLL
14#endif