forked from eProsima/Fast-DDS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing static linking when SECURITY=OFF but SSL is needed (eProsima#1971
) * [11561] Fixing static linking when SECURITY=OFF but SSL is needed * Assure redistributables to be quiet on quiet installations * [11561] Updating CMake script to select the right OpenSSL source. * [11561] Solving well known OpenSSL Windows dependency issue on static linking * [11561] Adding OpenSSL assembly dependency to avoid dll hell * [11561] Introducing a manifest template to autoupdate version numbers * [11561] fixing openssl version parsing if no tweak is given * [11561] addressing reviewers comments
- Loading branch information
1 parent
65f2c66
commit e80820c
Showing
5 changed files
with
122 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> | ||
<assemblyIdentity | ||
name="Fast-DDS" | ||
type="win32" | ||
version="@FASTDDS_CANONICAL_VERSION@" | ||
/> | ||
<description>eProsima Fast DDS is the most complete open source dds middleware for real time embedded architectures and operating systems.</description> | ||
<dependency> | ||
<dependentAssembly> | ||
<assemblyIdentity | ||
name="OpenSSL.Fast-DDS" | ||
type="win32" | ||
version="@OPENSSL_CANONICAL_VERSION@" | ||
/> | ||
</dependentAssembly> | ||
</dependency> | ||
</assembly> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,4 +19,3 @@ repositories: | |
type: git | ||
url: https://github.com/eProsima/IDL-Parser.git | ||
version: master | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters