Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Commit

Permalink
(conan-io#18961) fix fastdds binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
memsharded authored and ericLemanissier committed Sep 15, 2023
1 parent 6d93806 commit 9ec62d1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions recipes/fast-dds/all/conanfile.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import os
import textwrap

from conan import ConanFile
from conan.errors import ConanInvalidConfiguration
from conan.tools.build import check_min_cppstd
Expand All @@ -15,8 +18,7 @@
)
from conan.tools.microsoft import check_min_vs, is_msvc_static_runtime, is_msvc, msvc_runtime_flag
from conan.tools.scm import Version
import os
import textwrap


required_conan_version = ">=1.53.0"

Expand Down Expand Up @@ -69,7 +71,7 @@ def layout(self):

def requirements(self):
self.requires("tinyxml2/9.0.0")
self.requires("asio/1.28.0")
self.requires("asio/1.28.0") # This is now a package_type = header
self.requires("fast-cdr/1.0.27", transitive_headers=True, transitive_libs=True)
self.requires("foonathan-memory/0.7.3")
if self.options.with_ssl:
Expand Down

0 comments on commit 9ec62d1

Please sign in to comment.