30 lines
1.1 KiB
CMake
30 lines
1.1 KiB
CMake
# - Config file for the glfw3 package
|
|
# It defines the following variables
|
|
# GLFW3_INCLUDE_DIR, the path where GLFW headers are located
|
|
# GLFW3_LIBRARY_DIR, folder in which the GLFW library is located
|
|
# GLFW3_LIBRARY, library to link against to use GLFW
|
|
|
|
set(GLFW3_VERSION "3.1.0")
|
|
|
|
|
|
####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() #######
|
|
####### Any changes to this file will be overwritten by the next CMake run ####
|
|
####### The input file was glfw3Config.cmake.in ########
|
|
|
|
get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE)
|
|
|
|
macro(set_and_check _var _file)
|
|
set(${_var} "${_file}")
|
|
if(NOT EXISTS "${_file}")
|
|
message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !")
|
|
endif()
|
|
endmacro()
|
|
|
|
####################################################################################
|
|
|
|
set_and_check(GLFW3_INCLUDE_DIR "${PACKAGE_PREFIX_DIR}/include")
|
|
set_and_check(GLFW3_LIBRARY_DIR "${PACKAGE_PREFIX_DIR}/lib")
|
|
|
|
find_library(GLFW3_LIBRARY "glfw3" HINTS ${GLFW3_LIBRARY_DIR})
|
|
|