24 lines
527 B
CMake
24 lines
527 B
CMake
project(media-layer)
|
|
|
|
# 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
|
|
|
|
# Add Headers
|
|
add_library(media-layer-headers INTERFACE)
|
|
target_include_directories(media-layer-headers INTERFACE include)
|
|
|
|
# Add GLESv1_CM Stubs Or Compatibility Layer
|
|
add_subdirectory(gles)
|
|
|
|
# Add Core
|
|
add_subdirectory(core)
|
|
|
|
# Add Proxy
|
|
if(MCPI_USE_MEDIA_LAYER_PROXY)
|
|
add_subdirectory(proxy)
|
|
endif()
|
|
|
|
# Add Extras
|
|
add_subdirectory(extras)
|