Skip to content

Commit

Permalink
Fixed incorrect install of pugixml in dynamic build (openvinotoolkit#…
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov authored and openvino-dev-samples committed Nov 24, 2021
1 parent 94edcd2 commit f5add79
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions thirdparty/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,11 @@ if(ENABLE_SYSTEM_PUGIXML)
add_library(pugixml::static ALIAS pugixml)
else()
function(ie_build_pugixml)
set(BUILD_SHARED_LIBS OFF)
add_subdirectory(pugixml EXCLUDE_FROM_ALL)
function(ie_build_pugixml_static)
set(BUILD_SHARED_LIBS OFF)
add_subdirectory(pugixml EXCLUDE_FROM_ALL)
endfunction()
ie_build_pugixml_static()
set_property(TARGET pugixml-static PROPERTY EXPORT_NAME pugixml)
openvino_developer_export_targets(COMPONENT openvino_common TARGETS pugixml::static)
ov_install_static_lib(pugixml-static openvino_common)
Expand Down

0 comments on commit f5add79

Please sign in to comment.