client-root/cmake/FindOpus.cmake

67 lines
1.8 KiB
CMake
Raw Normal View History

2019-07-01 06:40:51 -04:00
# - Try to find opus include dirs and libraries
#
# Usage of this module as follows:
#
# find_package(opus)
#
# Variables used by this module, they can change the default behaviour and need
# to be set before calling find_package:
#
# opus_ROOT_DIR Set this variable to the root installation of
# opus if the module has problems finding the
# proper installation path.
#
# Variables defined by this module:
#
# opus_FOUND System has opus, include and library dirs found
# opus_INCLUDE_DIR The opus include directories.
# opus_LIBRARIES_STATIC The opus libraries.
# opus_LIBRARIES_SHARED The opus libraries.
include(tearoot-helper)
include(FindPackageHandleStandardArgs)
2019-10-24 14:03:13 -04:00
function(resolve_opus)
find_path(opus_ROOT_DIR
NAMES include/opus/opus.h
HINTS ${opus_ROOT_DIR} ${opus_ROOT_DIR}/${BUILD_OUTPUT}
)
2019-07-01 06:40:51 -04:00
2019-10-24 14:03:13 -04:00
find_path(opus_INCLUDE_DIR
NAMES opus/opus.h opus/opus_defines.h
HINTS ${opus_ROOT_DIR} ${opus_ROOT_DIR}/include/
)
2019-07-01 06:40:51 -04:00
2019-10-24 14:03:13 -04:00
find_library(opus_LIBRARIES_STATIC
NAMES libopus.a opus.a opus.lib
HINTS ${opus_ROOT_DIR} ${opus_ROOT_DIR}/lib
)
if(opus_LIBRARIES_STATIC)
add_library(opus::static SHARED IMPORTED)
set_target_properties(opus::static PROPERTIES
IMPORTED_LOCATION ${opus_LIBRARIES_STATIC}
INTERFACE_INCLUDE_DIRECTORIES ${opus_INCLUDE_DIR}
)
endif()
2019-07-01 06:40:51 -04:00
2019-10-24 14:03:13 -04:00
find_library(opus_LIBRARIES_SHARED
NAMES opus.dll libopus.so opus.so
HINTS ${opus_ROOT_DIR} ${opus_ROOT_DIR}/lib
)
if(opus_LIBRARIES_SHARED)
add_library(opus::shared SHARED IMPORTED)
set_target_properties(opus::shared PROPERTIES
IMPORTED_LOCATION ${opus_LIBRARIES_SHARED}
INTERFACE_INCLUDE_DIRECTORIES ${opus_INCLUDE_DIR}
)
endif()
find_package_handle_standard_args(opus DEFAULT_MSG
opus_INCLUDE_DIR
)
endfunction()
resolve_opus()
2019-07-01 06:40:51 -04:00