Skip to content

Commit

Permalink
Rename libidl to libcycloneddsidl
Browse files Browse the repository at this point in the history
Signed-off-by: Erik Boasson <eb@ilities.com>
  • Loading branch information
eboasson committed Oct 15, 2021
1 parent 0131940 commit c59f752
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/idl/CMakeLists.txt
Expand Up @@ -82,6 +82,7 @@ add_library(

set_target_properties(
idl PROPERTIES
OUTPUT_NAME "cycloneddsidl"
VERSION ${PROJECT_VERSION}
SOVERSION ${PROJECT_VERSION_MAJOR})

Expand Down
4 changes: 2 additions & 2 deletions src/tools/idlc/src/plugin.c
Expand Up @@ -19,14 +19,14 @@
#if WIN32
#include <Windows.h>
static const char sep[] = "/\\";
static const char lib[] = "";
static const char lib[] = "cyclonedds";
static const char ext[] = "dll";
#define SUBPROCESS_POPEN _popen
#define SUBPROCESS_PCLOSE _pclose
#else
#include <dlfcn.h>
static const char sep[] = "/";
static const char lib[] = "lib";
static const char lib[] = "libcyclonedds";
#if __APPLE__
static const char ext[] = "dylib";
#else
Expand Down

0 comments on commit c59f752

Please sign in to comment.