Skip to content

Commit

Permalink
Merge pull request #608 from bennibbelink/libxml-targets
Browse files Browse the repository at this point in the history
  • Loading branch information
gonuke authored May 21, 2024
2 parents a444242 + 99798e8 commit d86a703
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Since last release
**Changed:**

* Rely on ``python3`` in environment instead of ``python`` (#602)
* Link against ``libxml++`` imported target in CMake instead of ``LIBXMLXX_LIBRARIES`` (#608)

**Fixed:**

Expand Down
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ IF(NOT CYCLUS_DOC_ONLY)

# Find LibXML++ and dependencies
pkg_check_modules(LIBXMLXX IMPORTED_TARGET libxml++-4.0)
IF ( NOT LIBXMLXX_LIBRARIES )
IF ( NOT LIBXMLXX_FOUND )
pkg_check_modules(LIBXMLXX REQUIRED IMPORTED_TARGET libxml++-2.6)
ENDIF ( NOT LIBXMLXX_LIBRARIES )
SET(LIBS ${LIBS} ${LIBXMLXX_LIBRARIES})
ENDIF ( NOT LIBXMLXX_FOUND )
SET(LIBS ${LIBS} PkgConfig::LIBXMLXX)
message("-- LibXML++ Include Dir: ${LIBXMLXX_INCLUDE_DIRS}")
message("-- LibXML++ Librarires: ${LIBXMLXX_LIBRARIES}")

Expand Down

0 comments on commit d86a703

Please sign in to comment.