mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-02-13 16:00:27 +00:00
12 lines
224 B
Text
12 lines
224 B
Text
![]() |
cmake_minimum_required(VERSION 3.0)
|
||
|
project(renderers LANGUAGES C)
|
||
|
|
||
|
add_subdirectory(opengl)
|
||
|
add_subdirectory(egl)
|
||
|
|
||
|
add_library(renderers INTERFACE)
|
||
|
target_link_libraries(renderers INTERFACE
|
||
|
renderer_opengl
|
||
|
renderer_egl
|
||
|
)
|