mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
CMake: Properly include lzma include directories
This commit is contained in:
parent
048f6fac52
commit
1bc133f3ae
@ -8,3 +8,13 @@ function(dolphin_alias_library new old)
|
|||||||
endif()
|
endif()
|
||||||
add_library(${new} ALIAS _alias_${library_no_namespace})
|
add_library(${new} ALIAS _alias_${library_no_namespace})
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
|
# Makes an imported target if it doesn't exist. Useful for when find scripts from older versions of cmake don't make the targets you need
|
||||||
|
function(dolphin_make_imported_target_if_missing target lib)
|
||||||
|
if(${lib}_FOUND AND NOT TARGET ${target})
|
||||||
|
add_library(_${lib} INTERFACE)
|
||||||
|
target_link_libraries(_${lib} INTERFACE "${${lib}_LIBRARIES}")
|
||||||
|
target_include_directories(_${lib} INTERFACE "${${lib}_INCLUDE_DIRS}")
|
||||||
|
add_library(${target} ALIAS _${lib})
|
||||||
|
endif()
|
||||||
|
endfunction()
|
||||||
|
@ -761,16 +761,13 @@ endif()
|
|||||||
|
|
||||||
# macOS ships with liblzma.dylib but no headers, so check for the headers too
|
# macOS ships with liblzma.dylib but no headers, so check for the headers too
|
||||||
find_package(LibLZMA)
|
find_package(LibLZMA)
|
||||||
check_include_file(lzma.h HAVE_LZMA_H)
|
if(LIBLZMA_FOUND)
|
||||||
if(LIBLZMA_FOUND AND HAVE_LZMA_H)
|
# Imported target added in CMake 3.14
|
||||||
|
dolphin_make_imported_target_if_missing(LibLZMA::LibLZMA LIBLZMA)
|
||||||
message(STATUS "Using shared lzma")
|
message(STATUS "Using shared lzma")
|
||||||
else()
|
else()
|
||||||
check_vendoring_approved(lzma)
|
check_vendoring_approved(lzma)
|
||||||
if(LIBLZMA_FOUND AND NOT HAVE_LZMA_H)
|
message(STATUS "Shared lzma not found, falling back to the static library")
|
||||||
message(STATUS "Shared lzma found but lacks headers, falling back to the static library")
|
|
||||||
else()
|
|
||||||
message(STATUS "Shared lzma not found, falling back to the static library")
|
|
||||||
endif()
|
|
||||||
add_subdirectory(Externals/liblzma)
|
add_subdirectory(Externals/liblzma)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
@ -70,7 +70,7 @@ target_link_libraries(discio
|
|||||||
PUBLIC
|
PUBLIC
|
||||||
core
|
core
|
||||||
BZip2::BZip2
|
BZip2::BZip2
|
||||||
lzma
|
LibLZMA::LibLZMA
|
||||||
zstd::zstd
|
zstd::zstd
|
||||||
|
|
||||||
PRIVATE
|
PRIVATE
|
||||||
|
Loading…
Reference in New Issue
Block a user