We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da46743 commit 02cec5bCopy full SHA for 02cec5b
optional/vtd/vendor/vtd-api-2.2.0/conanfile.py
@@ -74,7 +74,7 @@ def package_info(self):
74
#
75
# VTD VERSION : (0) 2 . 2 . 0
76
vtd_api_version = (0<<24) | (2<<16) | (2<<8) | 0
77
- self.cpp_info.defines = ["VTD_API_VERSION={vtd_api_version}"]
+ self.cpp_info.defines = [f"VTD_API_VERSION={vtd_api_version}"]
78
79
if not self.in_local_cache:
80
self.cpp_info.libs = ["vtd_api"]
optional/vtd/vendor/vtd-api-2022.3/conanfile.py
# VTD VERSION : (1) 2022 . 03
vtd_api_version = (1<<24) | (22<<16) | (3<<8) | 0
0 commit comments