mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 19:00:28 +02:00
29 lines
No EOL
1.1 KiB
CMake
29 lines
No EOL
1.1 KiB
CMake
#
|
|
# FindQuaZip.h
|
|
# StackManagerQt/cmake/modules
|
|
#
|
|
# Created by Mohammed Nafees.
|
|
# Copyright (c) 2014 High Fidelity. All rights reserved.
|
|
#
|
|
|
|
# QUAZIP_FOUND - QuaZip library was found
|
|
# QUAZIP_INCLUDE_DIR - Path to QuaZip include dir
|
|
# QUAZIP_INCLUDE_DIRS - Path to QuaZip and zlib include dir (combined from QUAZIP_INCLUDE_DIR + ZLIB_INCLUDE_DIR)
|
|
# QUAZIP_LIBRARIES - List of QuaZip libraries
|
|
# QUAZIP_ZLIB_INCLUDE_DIR - The include dir of zlib headers
|
|
|
|
include("${MACRO_DIR}/HifiLibrarySearchHints.cmake")
|
|
hifi_library_search_hints("quazip")
|
|
|
|
if (WIN32)
|
|
find_path(QUAZIP_INCLUDE_DIRS quazip.h PATH_SUFFIXES include/quazip HINTS ${QUAZIP_SEARCH_DIRS})
|
|
elseif (APPLE)
|
|
find_path(QUAZIP_INCLUDE_DIRS quazip.h PATH_SUFFIXES include/quazip HINTS ${QUAZIP_SEARCH_DIRS})
|
|
else ()
|
|
find_path(QUAZIP_INCLUDE_DIRS quazip.h PATH_SUFFIXES quazip HINTS ${QUAZIP_SEARCH_DIRS})
|
|
endif ()
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(QUAZIP DEFAULT_MSG QUAZIP_INCLUDE_DIRS)
|
|
|
|
mark_as_advanced(QUAZIP_INCLUDE_DIRS QUAZIP_SEARCH_DIRS) |