Not sure how Prebuilt.cmake worked in my repo but not others, but okay. Of course I'd forget to stage the libvlc directory. And somehow vlc-bin wasn't added to autobuild.xml?!
84 lines
1.8 KiB
CMake
84 lines
1.8 KiB
CMake
# -*- cmake -*-
|
|
|
|
project(media_plugin_libvlc)
|
|
|
|
include(00-Common)
|
|
include(LLCommon)
|
|
include(LLImage)
|
|
include(LLPlugin)
|
|
include(LLMath)
|
|
include(LLRender)
|
|
include(LLWindow)
|
|
include(Linking)
|
|
include(PluginAPI)
|
|
include(MediaPluginBase)
|
|
include(OpenGL)
|
|
include(Variables)
|
|
|
|
include(LibVLCPlugin)
|
|
|
|
include_directories(
|
|
${LLPLUGIN_INCLUDE_DIRS}
|
|
${MEDIA_PLUGIN_BASE_INCLUDE_DIRS}
|
|
${LLCOMMON_INCLUDE_DIRS}
|
|
${LLMATH_INCLUDE_DIRS}
|
|
${LLIMAGE_INCLUDE_DIRS}
|
|
${LLRENDER_INCLUDE_DIRS}
|
|
${LLWINDOW_INCLUDE_DIRS}
|
|
${VLC_INCLUDE_DIR}
|
|
)
|
|
include_directories(SYSTEM
|
|
${LLCOMMON_SYSTEM_INCLUDE_DIRS}
|
|
)
|
|
|
|
|
|
### media_plugin_libvlc
|
|
|
|
set(media_plugin_libvlc_SOURCE_FILES
|
|
media_plugin_libvlc.cpp
|
|
)
|
|
|
|
add_library(media_plugin_libvlc
|
|
SHARED
|
|
${media_plugin_libvlc_SOURCE_FILES}
|
|
)
|
|
|
|
target_link_libraries(media_plugin_libvlc
|
|
${LLPLUGIN_LIBRARIES}
|
|
${MEDIA_PLUGIN_BASE_LIBRARIES}
|
|
${LLCOMMON_LIBRARIES}
|
|
${VLC_PLUGIN_LIBRARIES}
|
|
${PLUGIN_API_WINDOWS_LIBRARIES}
|
|
)
|
|
|
|
set_target_properties(media_plugin_libvlc PROPERTIES POSITION_INDEPENDENT_CODE TRUE)
|
|
|
|
if (WINDOWS)
|
|
if (ADDRESS_SIZE EQUAL 32)
|
|
set_target_properties(
|
|
media_plugin_libvlc
|
|
PROPERTIES
|
|
LINK_FLAGS "/MANIFEST:NO /SAFESEH:NO"
|
|
)
|
|
else (ADDRESS_SIZE EQUAL 32)
|
|
set_target_properties(
|
|
media_plugin_libvlc
|
|
PROPERTIES
|
|
LINK_FLAGS "/MANIFEST:NO"
|
|
)
|
|
endif (ADDRESS_SIZE EQUAL 32)
|
|
endif (WINDOWS)
|
|
|
|
if (DARWIN)
|
|
# Don't prepend 'lib' to the executable name, and don't embed a full path in the library's install name
|
|
set_target_properties(
|
|
media_plugin_libvlc
|
|
PROPERTIES
|
|
PREFIX ""
|
|
BUILD_WITH_INSTALL_RPATH TRUE
|
|
INSTALL_NAME_DIR "@executable_path"
|
|
LINK_FLAGS "-exported_symbols_list ${CMAKE_CURRENT_SOURCE_DIR}/../base/media_plugin_base.exp"
|
|
)
|
|
|
|
endif (DARWIN)
|