|
|
@@ -50,7 +50,10 @@ endif()
|
|
|
|
|
|
# Handle the QUIETLY and REQUIRED arguments and set LIBARCHIVE_FOUND
|
|
|
# to TRUE if all listed variables are TRUE.
|
|
|
-include(FindPackageHandleStandardArgs)
|
|
|
+# (Use ${CMAKE_ROOT}/Modules instead of ${CMAKE_CURRENT_LIST_DIR} because CMake
|
|
|
+# itself includes this FindLibArchive when built with an older CMake that does
|
|
|
+# not provide it. The older CMake also does not have CMAKE_CURRENT_LIST_DIR.)
|
|
|
+include(${CMAKE_ROOT}/Modules/FindPackageHandleStandardArgs.cmake)
|
|
|
find_package_handle_standard_args(LibArchive DEFAULT_MSG
|
|
|
LibArchive_LIBRARY LibArchive_INCLUDE_DIR
|
|
|
)
|