Skip to content

Commit

Permalink
Use correct include_dir names that come out of find std args.
Browse files Browse the repository at this point in the history
  • Loading branch information
metalMajor committed Nov 26, 2024
1 parent 770d074 commit 5b5f394
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/Modules/FindLibJuice.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ if (NOT TARGET LibJuice::LibJuice)
add_library(LibJuice::LibJuice UNKNOWN IMPORTED)
set_target_properties(LibJuice::LibJuice PROPERTIES
IMPORTED_LOCATION "${JUICE_LIBRARY}"
INTERFACE_INCLUDE_DIRECTORIES "${JUICE_INCLUDE_DIRS}"
INTERFACE_LINK_LIBRARIES "${JUICE_LIBRARIES}"
INTERFACE_INCLUDE_DIRECTORIES "${JUICE_INCLUDE_DIR}"
INTERFACE_LINK_LIBRARIES "${JUICE_LIBRARY}"
IMPORTED_LINK_INTERFACE_LANGUAGES "C")
endif ()
endif ()
Expand Down

0 comments on commit 5b5f394

Please sign in to comment.