chore(build): add vendored glew-cmake-2.2.0 library

This commit is contained in:
phaneron 2023-11-15 19:27:50 -05:00
parent cf257c771f
commit dd52d00736
303 changed files with 25236 additions and 1 deletions

View file

@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 2.8.12)
project(cmake_install_test)
# Dependencies of glew.
# These are referenced in glewConfig.cmake. but, not automatically found.
find_package(OpenGL REQUIRED)
find_package(X11 REQUIRED)
find_package(glew)
add_executable(glewinfo glewinfo.c)
target_link_libraries(glewinfo PRIVATE libglew_static)