mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-14 18:47:39 +01:00
81ebcddd7b
- Build maiatrac3plus on targets without ffmpeg
52 lines
1.3 KiB
CMake
52 lines
1.3 KiB
CMake
if(NOT WIN32 AND BUILD_V123)
|
|
if(NOT LIBAO_PATH AND NOT BUILD_STATIC)
|
|
find_package(AO QUIET)
|
|
|
|
if(AO_FOUND)
|
|
set(LIBAO_SOURCE "(system)")
|
|
set(LIBAO_INCLUDE ${AO_INCLUDE_DIR})
|
|
endif()
|
|
endif()
|
|
|
|
if(LIBAO_PATH OR BUILD_STATIC OR NOT AO_FOUND)
|
|
FetchDependency(LIBAO
|
|
DIR libao
|
|
)
|
|
|
|
if(LIBAO_PATH)
|
|
if(BUILD_STATIC)
|
|
set(LIBAO_CONF_ARGS --enable-static=yes --enable-shared=no)
|
|
set(LINK_EXT .a)
|
|
else()
|
|
set(LIBAO_CONF_ARGS --enable-static=no --enable-shared=yes)
|
|
set(LINK_EXT .so)
|
|
endif()
|
|
set(LIBAO_LINK_PATH ${LIBAO_BIN}/bin/usr/local/lib/libao${LINK_EXT})
|
|
set(LIBAO_INCLUDE ${LIBAO_BIN}/bin/usr/local/include)
|
|
|
|
if(NOT EXISTS ${LIBAO_LINK_PATH})
|
|
add_custom_target(LIBAO_MAKE ALL
|
|
COMMAND ./autogen.sh && ./configure ${LIBAO_CONF_ARGS} && make clean && make && make install DESTDIR=${LIBAO_BIN}/bin
|
|
WORKING_DIRECTORY ${LIBAO_PATH}
|
|
)
|
|
endif()
|
|
|
|
if(BUILD_STATIC)
|
|
add_library(ao STATIC IMPORTED)
|
|
else()
|
|
add_library(ao SHARED IMPORTED)
|
|
endif()
|
|
set_target_properties(ao PROPERTIES
|
|
IMPORTED_LOCATION ${LIBAO_LINK_PATH}
|
|
)
|
|
elseif(BUILD_STATIC)
|
|
message(FATAL_ERROR "Path to libao must be set. (Use LIBAO_PATH)")
|
|
else()
|
|
set(BUILD_V123 OFF)
|
|
endif()
|
|
endif()
|
|
endif()
|
|
if(NOT BUILD_V123)
|
|
unset(LIBAO_SOURCE)
|
|
endif()
|