mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-28 17:59:17 -05:00
11 lines
476 B
CMake
11 lines
476 B
CMake
# - 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 "/Users/ratalaika/Repositories/external/glfw3/lib/include")
|
|
set(GLFW_LIBRARY_DIR "/Users/ratalaika/Repositories/external/glfw3/lib/lib")
|
|
|
|
find_library(GLFW_LIBRARY "glfw" HINTS ${GLFW_LIBRARY_DIR})
|