Skip to content

Commit

Permalink
WIP - trying to make python work in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ValentinGuillaume committed Dec 4, 2024
1 parent 5c457d7 commit f39e383
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/app/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def package_info(self):
self.cpp_info.components["vtx_app_no_opengl"].libs = ["vtx_app_no_opengl"]
self.cpp_info.components["vtx_app_no_opengl"].set_property("cmake_target_name", "vtx_app::vtx_app_no_opengl")
self.cpp_info.components["vtx_app_no_opengl"].requires = ["vtx_util::vtx_util", "vtx_renderer::vtx_renderer_no_opengl", "vtx_io::vtx_io", "vtx_core::vtx_core", "entt::entt" ]
self.cpp_info.components["vtx_app_test"].libs = ["vtx_app_test"]
self.cpp_info.components["vtx_app_test"].set_property("cmake_target_name", "vtx_app::vtx_app")
self.cpp_info.components["vtx_app_test"].requires = ["vtx_util::vtx_util", "vtx_renderer::vtx_renderer_no_opengl", "vtx_app_no_opengl", "vtx_io::vtx_io", "vtx_core::vtx_core", "entt::entt", "catch2::catch2" ]
# self.cpp_info.components["vtx_app_test"].libs = ["vtx_app_test"]
# self.cpp_info.components["vtx_app_test"].set_property("cmake_target_name", "vtx_app::vtx_app_test")
self.cpp_info.components["vtx_app_test"].requires = [ "catch2::catch2" ]

0 comments on commit f39e383

Please sign in to comment.