First
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#pragma once
|
||||
|
||||
#include "tl/platform.h"
|
||||
|
||||
#if defined FS_BUILD_SHARED_LIB
|
||||
|
||||
#if defined TL_TOOLCHAIN_MSC
|
||||
# define FS_API __declspec(dllexport)
|
||||
#else
|
||||
# define FS_API
|
||||
#endif
|
||||
|
||||
#elif defined FS_USE_SHARED_LIB
|
||||
|
||||
#if defined TL_TOOLCHAIN_MSC
|
||||
# define FS_API __declspec(dllimport)
|
||||
#else
|
||||
# define FS_API
|
||||
#endif //
|
||||
|
||||
#else
|
||||
# define FS_API
|
||||
#endif
|
||||
Reference in New Issue
Block a user