-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #152 from traversaro/addcycloneddswindows
Enable rmw_cyclonedds_cpp package on Windows
- Loading branch information
Showing
5 changed files
with
63 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/iceoryx_binding_c/CMakeLists.txt b/iceoryx_binding_c/CMakeLists.txt | ||
index 048a6ea5a..78ff815fa 100644 | ||
--- a/iceoryx_binding_c/CMakeLists.txt | ||
+++ b/iceoryx_binding_c/CMakeLists.txt | ||
@@ -16,6 +16,10 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
cmake_minimum_required(VERSION 3.16) | ||
|
||
+if(WIN32) | ||
+ set(BUILD_SHARED_LIBS OFF CACHE BOOL "" FORCE) | ||
+endif() | ||
+ | ||
set(IOX_VERSION_STRING "2.0.5") | ||
|
||
|
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,15 @@ | ||
diff --git a/iceoryx_dds/CMakeLists.txt b/iceoryx_dds/CMakeLists.txt | ||
index ae1f9f83f..e79873a72 100644 | ||
--- a/iceoryx_dds/CMakeLists.txt | ||
+++ b/iceoryx_dds/CMakeLists.txt | ||
@@ -16,6 +16,10 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
cmake_minimum_required(VERSION 3.16) | ||
|
||
+if(WIN32) | ||
+ set(BUILD_SHARED_LIBS OFF CACHE BOOL "" FORCE) | ||
+endif() | ||
+ | ||
set(IOX_VERSION_STRING "2.0.5") | ||
|
||
project(iceoryx_dds VERSION ${IOX_VERSION_STRING}) |
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,15 @@ | ||
diff --git a/iceoryx_hoofs/CMakeLists.txt b/iceoryx_hoofs/CMakeLists.txt | ||
index 8afdbb5e8..cf66ba0ea 100644 | ||
--- a/iceoryx_hoofs/CMakeLists.txt | ||
+++ b/iceoryx_hoofs/CMakeLists.txt | ||
@@ -17,6 +17,10 @@ | ||
|
||
cmake_minimum_required(VERSION 3.16) | ||
|
||
+if(WIN32) | ||
+ set(BUILD_SHARED_LIBS OFF CACHE BOOL "" FORCE) | ||
+endif() | ||
+ | ||
set(IOX_VERSION_STRING "2.0.5") | ||
|
||
project(iceoryx_hoofs VERSION ${IOX_VERSION_STRING}) |
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,15 @@ | ||
diff --git a/iceoryx_posh/CMakeLists.txt b/iceoryx_posh/CMakeLists.txt | ||
index 57e84cdd0..d7781cbb9 100644 | ||
--- a/iceoryx_posh/CMakeLists.txt | ||
+++ b/iceoryx_posh/CMakeLists.txt | ||
@@ -16,6 +16,10 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
cmake_minimum_required(VERSION 3.16) | ||
|
||
+if(WIN32) | ||
+ set(BUILD_SHARED_LIBS OFF CACHE BOOL "" FORCE) | ||
+endif() | ||
+ | ||
set(IOX_VERSION_STRING "2.0.5") | ||
|
||
project(iceoryx_posh VERSION ${IOX_VERSION_STRING}) |
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