mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
12 lines
224 B
CMake
12 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
|
||
|
)
|