parent
c310d1c47c
commit
f6eccf145b
4 changed files with 38 additions and 1 deletions
@ -0,0 +1,10 @@ |
|||||||
|
# - Config file for the glfw package |
||||||
|
# It defines the following variables |
||||||
|
# GLFW_INCLUDE_DIR, the path where GLFW headers are located |
||||||
|
# GLFW_LIBRARY_DIR, folder in which the GLFW library is located |
||||||
|
# GLFW_LIBRARY, library to link against to use GLFW |
||||||
|
|
||||||
|
set(GLFW_INCLUDE_DIR "@CMAKE_INSTALL_PREFIX@/include") |
||||||
|
set(GLFW_LIBRARY_DIR "@CMAKE_INSTALL_PREFIX@/lib@LIB_SUFFIX@") |
||||||
|
|
||||||
|
find_library(GLFW_LIBRARY "@GLFW_LIB_NAME@" HINTS ${GLFW_LIBRARY_DIR}) |
@ -0,0 +1,10 @@ |
|||||||
|
set(PACKAGE_VERSION "@GLFW_VERSION_FULL@") |
||||||
|
|
||||||
|
if("${PACKAGE_FIND_VERSION_MAJOR}" EQUAL "@GLFW_VERSION_MAJOR@") |
||||||
|
set(PACKAGE_VERSION_COMPATIBLE TRUE) |
||||||
|
if("${PACKAGE_FIND_VERSION_MINOR}" EQUAL @GLFW_VERSION_MINOR@) |
||||||
|
set(PACKAGE_VERSION_EXACT TRUE) |
||||||
|
endif() |
||||||
|
else() |
||||||
|
set(PACKAGE_VERSION_COMPATIBLE FALSE) |
||||||
|
endif() |
Loading…
Reference in New Issue