build: range-v3 dependency fixed

This commit is contained in:
Mateusz Pusz
2021-03-19 08:41:11 +01:00
parent 081e61eb98
commit 813403c8f0

View File

@@ -145,7 +145,7 @@ class UnitsConan(ConanFile):
if compiler == "Visual Studio":
self.cpp_info.components["core"].cxxflags = ["/utf-8"]
elif compiler == "clang" and compiler.libcxx == "libc++":
self.cpp_info.components["core"].requires.append("range-v3/range-v3")
self.cpp_info.components["core"].requires.append("range-v3::range-v3")
# rest
self.cpp_info.components["core-io"].requires = ["core"]