2021-06-17 21:32:24 +00:00
|
|
|
project(media-layer)
|
|
|
|
|
2022-05-29 22:44:27 +00:00
|
|
|
# Target Notes:
|
|
|
|
# media-layer-core-real: Fully Built Media Layer Core
|
|
|
|
# media-layer-core: Alias Target That Points To The Library MCPI Should Link To
|
2021-06-17 21:32:24 +00:00
|
|
|
|
|
|
|
# Add Headers
|
|
|
|
add_library(media-layer-headers INTERFACE)
|
|
|
|
target_include_directories(media-layer-headers INTERFACE include)
|
|
|
|
|
2022-05-29 22:44:27 +00:00
|
|
|
# Add GLESv1_CM Stubs Or Compatibility Layer
|
|
|
|
add_subdirectory(gles)
|
|
|
|
|
2021-06-17 21:32:24 +00:00
|
|
|
# Add Core
|
|
|
|
add_subdirectory(core)
|
|
|
|
|
|
|
|
# Add Proxy
|
|
|
|
if(MCPI_USE_MEDIA_LAYER_PROXY)
|
|
|
|
add_subdirectory(proxy)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Add Extras
|
|
|
|
add_subdirectory(extras)
|