You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
10 lines
447 B
10 lines
447 B
# - 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})
|
|
|