Skip to content

Commit

Permalink
fix .set_property(generator) tests
Browse files Browse the repository at this point in the history
  • Loading branch information
memsharded committed Dec 20, 2021
1 parent a7fcde1 commit c40de58
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -592,12 +592,11 @@ def package(self):
def package_info(self):
self.cpp_info.names["{generator}"] = "nonstd"
self.cpp_info.filenames["{generator}"] = "{name}"
self.cpp_info.set_property("cmake_target_name", "nonstd", "{generator}")
self.cpp_info.set_property("cmake_file_name", "{name}", "{generator}")
self.cpp_info.set_property("cmake_target_name", "nonstd")
self.cpp_info.set_property("cmake_file_name", "{name}")
self.cpp_info.components["1"].names["{generator}"] = "{name}"
self.cpp_info.components["1"].set_property("cmake_target_name",
"{name}", "{generator}")
self.cpp_info.components["1"].set_property("cmake_target_name", "{name}")
self.cpp_info.components["1"].libs = ["{name}"]
""")
client = TestClient()
Expand Down

0 comments on commit c40de58

Please sign in to comment.