Skip to content

Commit d5447a6

Browse files
tobifalkcassava
authored andcommitted
tooling: Set boost dependency to full package mode
Resolves #69.
1 parent b59a153 commit d5447a6

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

engine/conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def package(self):
6161
cmake.install()
6262

6363
def package_id(self):
64-
self.info.requires["boost"].full_version_mode()
64+
self.info.requires["boost"].full_package_mode()
6565

6666
def package_info(self):
6767
if self.settings.os == "Linux":

fable/conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def package(self):
6161
cmake.install()
6262

6363
def package_id(self):
64-
self.info.requires["boost"].full_version_mode()
64+
self.info.requires["boost"].full_package_mode()
6565

6666
def package_info(self):
6767
if self.in_local_cache:

models/conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def package(self):
6464
cmake.install()
6565

6666
def package_id(self):
67-
self.info.requires["boost"].full_version_mode()
67+
self.info.requires["boost"].full_package_mode()
6868

6969
def package_info(self):
7070
# Make sure we can find the library, both in editable mode and in the

runtime/conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def package(self):
6969
cmake.install()
7070

7171
def package_id(self):
72-
self.info.requires["boost"].full_version_mode()
72+
self.info.requires["boost"].full_package_mode()
7373

7474
def package_info(self):
7575
# Make sure we can find the libs and *.cmake files, both in editable

vendor/cpp-netlib/conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def package(self):
5858
cmake.install()
5959

6060
def package_id(self):
61-
self.info.requires["boost"].full_version_mode()
61+
self.info.requires["boost"].full_package_mode()
6262

6363
def package_info(self):
6464
self.cpp_info.libs = tools.collect_libs(self)

0 commit comments

Comments
 (0)