mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-02-09 22:25:36 +00:00
11 lines
224 B
CMake
11 lines
224 B
CMake
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
|
|
)
|