Support checking for multiple versions, first check gstreamer-1.0, then gstreamer-0.10. Add support for finding gstreamer-player. Specify the required components, add the include directories and link with the libraries of the found components. Set the setup variables wxUSE_GSTREAMER and wxUSE_GSTREAMER_PLAYER.
		
			
				
	
	
		
			58 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
| #############################################################################
 | |
| # Name:        build/cmake/lib/media/CMakeLists.txt
 | |
| # Purpose:     CMake file for media library
 | |
| # Author:      Tobias Taschner
 | |
| # Created:     2016-10-03
 | |
| # Copyright:   (c) 2016 wxWidgets development team
 | |
| # Licence:     wxWindows licence
 | |
| #############################################################################
 | |
| 
 | |
| include(../../source_groups.cmake)
 | |
| 
 | |
| wx_append_sources(MEDIA_FILES MEDIA_CMN)
 | |
| 
 | |
| if(WXMSW)
 | |
|     wx_append_sources(MEDIA_FILES MEDIA_MSW)
 | |
| elseif(WXOSX_COCOA)
 | |
|     wx_append_sources(MEDIA_FILES MEDIA_OSX_COCOA)
 | |
| elseif(UNIX)
 | |
|     wx_append_sources(MEDIA_FILES MEDIA_UNIX)
 | |
| elseif(WXQT)
 | |
|     wx_append_sources(MEDIA_FILES MEDIA_QT)
 | |
| endif()
 | |
| 
 | |
| wx_add_library(media ${MEDIA_FILES})
 | |
| if(WXOSX_COCOA)
 | |
|     # TODO: add version detection of some kind and/or wx_option
 | |
|     wx_lib_compile_definitions(media PRIVATE -DwxOSX_USE_QTKIT=0)
 | |
|     wx_lib_link_libraries(media PUBLIC
 | |
|         "-framework AVFoundation"
 | |
|         "-framework AVKit"
 | |
|         "-framework CoreMedia"
 | |
|         )
 | |
| elseif(UNIX)
 | |
|     wx_lib_include_directories(media PUBLIC ${GSTREAMER_INCLUDE_DIRS})
 | |
|     if(GSTREAMER_INTERFACES_INCLUDE_DIRS)
 | |
|         wx_lib_include_directories(media PUBLIC ${GSTREAMER_INTERFACES_INCLUDE_DIRS})
 | |
|     endif()
 | |
|     if(GSTREAMER_VIDEO_INCLUDE_DIRS)
 | |
|         wx_lib_include_directories(media PUBLIC ${GSTREAMER_VIDEO_INCLUDE_DIRS})
 | |
|     endif()
 | |
|     if(GSTREAMER_PLAYER_INCLUDE_DIRS)
 | |
|         wx_lib_include_directories(media PUBLIC ${GSTREAMER_PLAYER_INCLUDE_DIRS})
 | |
|     endif()
 | |
| 
 | |
|     wx_lib_link_libraries(media PUBLIC ${GSTREAMER_LIBRARIES})
 | |
|     if(GSTREAMER_INTERFACES_LIBRARIES)
 | |
|         wx_lib_link_libraries(media PUBLIC ${GSTREAMER_INTERFACES_LIBRARIES})
 | |
|     endif()
 | |
|     if(GSTREAMER_VIDEO_LIBRARIES)
 | |
|         wx_lib_link_libraries(media PUBLIC ${GSTREAMER_VIDEO_LIBRARIES})
 | |
|     endif()
 | |
|     if(GSTREAMER_PLAYER_LIBRARIES)
 | |
|         wx_lib_link_libraries(media PUBLIC ${GSTREAMER_PLAYER_LIBRARIES})
 | |
|     endif()
 | |
| endif()
 | |
| 
 | |
| wx_finalize_lib(media)
 |