Skip to content

Commit

Permalink
CMake: fix warnings about mismatched case for PIXMAN and ORACLE depen…
Browse files Browse the repository at this point in the history
…dencies
  • Loading branch information
rouault committed May 11, 2022
1 parent 2f52ef4 commit 58c88c7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Expand Up @@ -436,7 +436,7 @@ if(USE_PBF)
endif()

if(WITH_PIXMAN)
find_package(Pixman)
find_package(PIXMAN)
if(PIXMAN_FOUND)
include_directories(${PIXMAN_INCLUDE_DIR})
ms_link_libraries(${PIXMAN_LIBRARY})
Expand Down Expand Up @@ -535,7 +535,7 @@ if(WITH_ORACLESPATIAL OR WITH_ORACLE_PLUGIN)
if(NOT DEFINED ENV{ORACLE_HOME})
MESSAGE( SEND_ERROR "ORACLE_HOME environment variable not set, needed for detection")
endif()
find_package(Oracle)
find_package(ORACLE)
if(ORACLE_FOUND)
include_directories(${ORACLE_INCLUDE_DIR})
list(APPEND ALL_INCLUDE_DIRS ${ORACLE_INCLUDE_DIR})
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 58c88c7

Please sign in to comment.