mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
CMake: Fix case in FindPugixml resulting in false negative
As mentioned in GH-6652.
This commit is contained in:
@ -529,8 +529,8 @@ add_subdirectory(Externals/Bochs_disasm)
|
||||
add_subdirectory(Externals/cpp-optparse)
|
||||
add_subdirectory(Externals/glslang)
|
||||
|
||||
find_package(Pugixml)
|
||||
if(NOT Pugixml_FOUND)
|
||||
find_package(pugixml)
|
||||
if(NOT pugixml_FOUND)
|
||||
message(STATUS "Using static pugixml from Externals")
|
||||
add_subdirectory(Externals/pugixml)
|
||||
endif()
|
||||
|
Reference in New Issue
Block a user