mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 16:48:21 +00:00
2973319bff
We only use gluOrtho2D, which is trivially replaced with glOrtho, and gluErrorString which can be replaced with a small lookup table.
24 lines
409 B
CMake
24 lines
409 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
project(renderer_Opengl LANGUAGES C)
|
|
|
|
find_package(PkgConfig)
|
|
pkg_check_modules(RENDERER_OPENGL_PKGCONFIG REQUIRED
|
|
gl
|
|
)
|
|
|
|
add_library(renderer_OpenGL STATIC
|
|
opengl.c
|
|
)
|
|
|
|
target_link_libraries(renderer_OpenGL
|
|
${RENDERER_OPENGL_PKGCONFIG_LIBRARIES}
|
|
lg_common
|
|
fonts
|
|
)
|
|
|
|
target_include_directories(renderer_OpenGL
|
|
PRIVATE
|
|
src
|
|
${RENDERER_OPENGL_PKGCONFIG_INCLUDE_DIRS}
|
|
)
|