comparison Plugins/Engine/PluginsManager.cpp @ 1026:a13ccd93df28

fix OS X build
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 10 Jul 2014 12:18:40 +0200
parents c068671d12a9
children 57400f233de8
comparison
equal deleted inserted replaced
1025:da2226739305 1026:a13ccd93df28
42 42
43 #ifdef WIN32 43 #ifdef WIN32
44 #define PLUGIN_EXTENSION ".dll" 44 #define PLUGIN_EXTENSION ".dll"
45 #elif defined(__linux) 45 #elif defined(__linux)
46 #define PLUGIN_EXTENSION ".so" 46 #define PLUGIN_EXTENSION ".so"
47 #elif defined(__APPLE__) && defined(__MACH__)
48 #define PLUGIN_EXTENSION ".dylib"
47 #else 49 #else
48 #error Support your platform here 50 #error Support your platform here
49 #endif 51 #endif
50 52
51 53