diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/uca-plugin-manager.c | 2 |
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); |