aboutsummaryrefslogtreecommitdiff
path: root/ports/vtk/fix-pugixml-link.patch
blob: 8708506b6e8ac4bec240d87de3ed9e27c84f539d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/IO/CityGML/CMakeLists.txt b/IO/CityGML/CMakeLists.txt
index ce979ba..322e2de 100644
--- a/IO/CityGML/CMakeLists.txt
+++ b/IO/CityGML/CMakeLists.txt
@@ -4,8 +4,5 @@ vtk_module_library(vtkIOCityGML ${Module_SRCS})
 # pugixml does not set _INCLUDE_DIRS or _LIBRARIES
 if(VTK_USE_SYSTEM_PUGIXML AND NOT pugixml_INCLUDE_DIRS)
   find_package(pugixml REQUIRED)
-  get_target_property(pugixml_INCLUDE_DIRS pugixml INTERFACE_INCLUDE_DIRECTORIES)
-  get_target_property(pugixml_LIBRARIES pugixml LOCATION)
-  include_directories(${pugixml_INCLUDE_DIRS})
-  vtk_module_link_libraries(vtkIOCityGML LINK_PRIVATE ${pugixml_LIBRARIES})
+  vtk_module_link_libraries(vtkIOCityGML LINK_PRIVATE pugixml)
 endif()