Skip to content

Commit

Permalink
Fix some CMake warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
geographika authored and github-actions[bot] committed Mar 22, 2022
1 parent e816d4c commit 2fa5f4a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cmake/FindCairo.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -73,5 +73,5 @@ ENDIF ()
set(CAIRO_INCLUDE_DIRS ${CAIRO_INCLUDE_DIR} ${FC_INCLUDE_DIR})
set(CAIRO_LIBRARIES ${CAIRO_LIBRARY})
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(CAIRO DEFAULT_MSG CAIRO_LIBRARY CAIRO_INCLUDE_DIR)
find_package_handle_standard_args(Cairo DEFAULT_MSG CAIRO_LIBRARY CAIRO_INCLUDE_DIR)
mark_as_advanced(CAIRO_LIBRARY CAIRO_INCLUDE_DIR)
2 changes: 1 addition & 1 deletion cmake/FindFriBiDi.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ find_library(FRIBIDI_LIBRARY
set(FRIBIDI_INCLUDE_DIRS ${FRIBIDI_INCLUDE_DIR})
set(FRIBIDI_LIBRARIES ${FRIBIDI_LIBRARY})
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(FRIBIDI DEFAULT_MSG FRIBIDI_LIBRARY FRIBIDI_INCLUDE_DIR)
find_package_handle_standard_args(FriBiDi DEFAULT_MSG FRIBIDI_LIBRARY FRIBIDI_INCLUDE_DIR)
mark_as_advanced(FRIBIDI_LIBRARY FRIBIDI_INCLUDE_DIR)
2 changes: 1 addition & 1 deletion cmake/FindHarfBuzz.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# HARFBUZZ_INCLUDE_DIR - containg the HarfBuzz headers
# HARFBUZZ_LIBRARY - containg the HarfBuzz library

include(FindPkgConfig)
find_package(PkgConfig)

pkg_check_modules(PC_HARFBUZZ harfbuzz>=0.9.18)

Expand Down
2 changes: 1 addition & 1 deletion cmake/FindProj.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ FIND_PATH(PROJ_INCLUDE_DIR NAMES proj.h proj_api.h)
FIND_LIBRARY(PROJ_LIBRARY NAMES proj proj_i)

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(PROJ DEFAULT_MSG PROJ_LIBRARY PROJ_INCLUDE_DIR)
find_package_handle_standard_args(Proj DEFAULT_MSG PROJ_LIBRARY PROJ_INCLUDE_DIR)
mark_as_advanced(PROJ_LIBRARY PROJ_INCLUDE_DIR)


Expand Down
2 changes: 1 addition & 1 deletion cmake/FindSVGCairo.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ find_package_handle_standard_args(SVG DEFAULT_MSG SVG_LIBRARY SVG_INCLUDE_DIR)
mark_as_advanced(SVG_LIBRARY SVG_INCLUDE_DIR)
set(SVGCAIRO_INCLUDE_DIRS ${SVGCAIRO_INCLUDE_DIR})
set(SVGCAIRO_LIBRARIES ${SVGCAIRO_LIBRARY})
find_package_handle_standard_args(SVGCAIRO DEFAULT_MSG SVGCAIRO_LIBRARY SVGCAIRO_INCLUDE_DIR)
find_package_handle_standard_args(SVGCairo DEFAULT_MSG SVGCAIRO_LIBRARY SVGCAIRO_INCLUDE_DIR)
mark_as_advanced(SVGCAIRO_LIBRARY SVGCAIRO_INCLUDE_DIR)

0 comments on commit 2fa5f4a

Please sign in to comment.