🐛 Fixed SocketW target name

This commit is contained in:
Edgar 2023-02-10 14:33:00 +01:00
parent 47f39a851b
commit 91a339e086
No known key found for this signature in database
GPG Key ID: 9AA5DDFFCBDCE46A

View File

@ -35,4 +35,8 @@ class SocketwConan(ConanFile):
cmake.install()
def package_info(self):
self.cpp_info.set_property("cmake_module_file_name", "SocketW")
self.cpp_info.set_property("cmake_module_target_name", "SocketW::SocketW")
self.cpp_info.set_property("cmake_file_name", "SocketW")
self.cpp_info.set_property("cmake_target_name", "SocketW::SocketW")
self.cpp_info.libs = collect_libs(self)