2021-06-17 21:32:24 +00:00
|
|
|
project(media-layer-core)
|
|
|
|
|
2022-07-02 22:14:23 +00:00
|
|
|
# Dependencies
|
|
|
|
add_subdirectory(dependencies)
|
|
|
|
|
2021-06-17 21:32:24 +00:00
|
|
|
# Configuration
|
2022-07-02 22:14:23 +00:00
|
|
|
set(CORE_SRC src/base.cpp src/media.c src/screenshot.c $<TARGET_OBJECTS:media-layer-extras>) # SDL Re-Implementation Using GLFW
|
2021-09-12 03:18:12 +00:00
|
|
|
if(NOT MCPI_HEADLESS_MODE)
|
|
|
|
list(APPEND CORE_SRC src/audio/api.cpp src/audio/engine.c src/audio/file.cpp)
|
|
|
|
endif()
|
2021-06-17 21:32:24 +00:00
|
|
|
|
|
|
|
# Build
|
2022-07-02 22:14:23 +00:00
|
|
|
add_library(media-layer-core SHARED ${CORE_SRC}) # Dependencies Are Setup Later
|
|
|
|
# Install
|
|
|
|
install(TARGETS media-layer-core DESTINATION "${MCPI_LIB_DIR}")
|
|
|
|
install(TARGETS media-layer-core EXPORT sdk DESTINATION "${MCPI_SDK_LIB_DIR}")
|
2021-06-17 21:32:24 +00:00
|
|
|
|
2022-07-02 22:14:23 +00:00
|
|
|
# Link
|
|
|
|
target_link_libraries(media-layer-core PUBLIC media-layer-headers PUBLIC reborn-util PUBLIC pthread PUBLIC dl)
|
|
|
|
if(NOT MCPI_HEADLESS_MODE)
|
|
|
|
# OpenAL
|
|
|
|
find_library(OPENAL_LIBRARY NAMES openal REQUIRED)
|
2021-06-17 21:32:24 +00:00
|
|
|
# Link
|
2022-07-02 22:14:23 +00:00
|
|
|
target_link_libraries(media-layer-core PRIVATE png12 PRIVATE "${OPENAL_LIBRARY}" PRIVATE m PUBLIC GLESv1_CM PRIVATE glfw)
|
2021-07-05 23:40:43 +00:00
|
|
|
endif()
|