diff --git a/Source/Core/Common/Src/Paths.h b/Source/Core/Common/Src/Paths.h index d2a33fbcc0..45ffb756a0 100644 --- a/Source/Core/Common/Src/Paths.h +++ b/Source/Core/Common/Src/Paths.h @@ -5,9 +5,14 @@ #define PLUGIN_PREFIX "" #define PLUGIN_SUFFIX ".dll" #else +#ifdef __APPLE__ +#define PLUGIN_PREFIX "lib" +#define PLUGIN_SUFFIX ".dylib" +#else #define PLUGIN_PREFIX "lib" #define PLUGIN_SUFFIX ".so" #endif +#endif #define DIR_SEP "/" #define DIR_SEP_CHR '/'