]> vaikene.ee Git - evaf/blobdiff - src/libs/Plugins/pluginmanager.h
Added support for building under CYGWIN on Windows.
[evaf] / src / libs / Plugins / pluginmanager.h
index 2f320f97b54d0eab2ce57ccae5256976686e8846..e56092225030843e3a7be50e38f1ff8e2b207990 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * @file plugins/pluginmanager.h
+ * @file Plugins/pluginmanager.h
  * @brief Manager for loadable modules (plugins)
  *
  * Copyright (c) 2011 Enar Vaikene
@@ -24,6 +24,9 @@
 #include <version_rc.h>
 
 #include <QObject>
+#include <QString>
+
+namespace eVaf {
 
 /**
  * Library for managing loadable modules (plugins).
@@ -44,6 +47,31 @@ namespace Internal {
     class PluginManagerPrivate;
 }
 
+/**
+ * Expands plugin names for the selected platform.
+ * @param name Name of the plugin
+ * @return Expanded plugin name
+ *
+ * This function expands the plugin name so that it becomes valid for the selected platform.
+ * For example, on Linux it adds the prefix "lib" to the beginning and extension ".so" to the end.
+ */
+inline QString expandPluginName(QString const & name)
+{
+#ifdef Q_OS_WIN32
+#  ifdef Q_CC_MINGW
+    return "lib" + name + ".dll";
+#  else
+    return name + ".dll";
+#  endif
+#elif defined Q_OS_LINUX
+    return "lib" + name + ".so";
+#elif defined Q_OS_CYGWIN
+    return "cyg" + name + ".dll";
+#else
+    return name;
+#endif
+}
+
 /**
  * Plugin manager for eVaf applications.
  */
@@ -101,11 +129,11 @@ signals:
 
 private:
 
-    Internal::PluginManagerPrivate * dl;
+    Internal::PluginManagerPrivate * d;
 
 };
 
-} // namespace Plugins
-
+} // namespace eVaf::Plugins
+} // namespace eVaf
 
 #endif // pluginmanager.h