summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@gmail.com>2016-03-15 16:02:59 +0100
committerMatthias Vogelgesang <matthias.vogelgesang@gmail.com>2016-03-15 16:02:59 +0100
commitf0d736e94d16921c2cbf2081baf9296c967cbe1d (patch)
tree2fccc4bbb815d90ec6d18c18782cc46775e90a3b /src
parentf8d3dc2c2372b79c76d313696e98f9b2932f9ea6 (diff)
parent61054956f111b2fe18be59efc19e573d3d41efd7 (diff)
downloadlibuca-f0d736e94d16921c2cbf2081baf9296c967cbe1d.tar.gz
libuca-f0d736e94d16921c2cbf2081baf9296c967cbe1d.tar.bz2
libuca-f0d736e94d16921c2cbf2081baf9296c967cbe1d.tar.xz
libuca-f0d736e94d16921c2cbf2081baf9296c967cbe1d.zip
Merge pull request #75 from saisasidhar/master
Building libuca for Windows
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt1
-rw-r--r--src/uca-plugin-manager.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index d8af907..eab0f9c 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -114,6 +114,7 @@ endif()
#{{{ Installation
install(TARGETS uca
LIBRARY DESTINATION ${UCA_LIBDIR}
+ RUNTIME DESTINATION ${UCA_BINDIR}
COMPONENT libraries)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libuca.pc
diff --git a/src/uca-plugin-manager.c b/src/uca-plugin-manager.c
index dc69227..b298a4c 100644
--- a/src/uca-plugin-manager.c
+++ b/src/uca-plugin-manager.c
@@ -229,7 +229,7 @@ get_camera_type (UcaPluginManagerPrivate *priv,
GModule *module;
gchar *module_path;
GetTypeFunc *func;
- const gchar *symbol_name = "uca_camera_get_type";
+ const gchar *symbol_name = "camera_plugin_get_type";
module_path = find_camera_module_path (priv->search_paths, name);