minecraft-pi-reborn/media-layer/core/CMakeLists.txt

39 lines
931 B
CMake
Raw Normal View History

2021-06-17 21:32:24 +00:00
project(media-layer-core)
2024-06-15 12:52:15 +00:00
# SDL Re-Implementation Using GLFW
set(CORE_SRC
src/base.cpp
2024-11-18 06:56:11 +00:00
src/window/media.cpp
src/window/cursor.cpp
src/window/util.cpp
src/window/events.cpp
src/window/offscreen.cpp
src/window/gles.cpp
2024-06-15 12:52:15 +00:00
src/audio/api.cpp
2024-11-18 03:48:25 +00:00
src/audio/engine.cpp
2024-06-15 12:52:15 +00:00
src/audio/file.cpp
)
2021-06-17 21:32:24 +00:00
# Build
2023-11-11 05:44:26 +00:00
add_library(media-layer-core-real SHARED ${CORE_SRC}) # Dependencies Are Setup Later
set_target_properties(media-layer-core-real PROPERTIES OUTPUT_NAME "media-layer-core")
if(BUILD_NATIVE_COMPONENTS)
add_library(media-layer-core ALIAS media-layer-core-real)
endif()
2023-11-11 05:44:26 +00:00
# Install
install(TARGETS media-layer-core-real DESTINATION "${MCPI_LIB_DIR}")
2021-06-17 21:32:24 +00:00
2022-07-02 22:14:23 +00:00
# Link
2024-06-15 12:52:15 +00:00
find_library(OPENAL_LIBRARY NAMES openal REQUIRED)
target_link_libraries(media-layer-core-real
2024-11-15 20:26:33 +00:00
PUBLIC
media-layer-headers
reborn-util
dl
PRIVATE
"${OPENAL_LIBRARY}"
m
glfw
LIB_LIEF
2024-06-15 12:52:15 +00:00
)