1# Copyright (c) 2017-2022, Intel Corporation 2# 3# Permission is hereby granted, free of charge, to any person obtaining a 4# copy of this software and associated documentation files (the "Software"), 5# to deal in the Software without restriction, including without limitation 6# the rights to use, copy, modify, merge, publish, distribute, sublicense, 7# and/or sell copies of the Software, and to permit persons to whom the 8# Software is furnished to do so, subject to the following conditions: 9# 10# The above copyright notice and this permission notice shall be included 11# in all copies or substantial portions of the Software. 12# 13# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 14# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 16# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 17# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 18# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 19# OTHER DEALINGS IN THE SOFTWARE. 20 21# Only can include subdirectory which has a media_srcs.cmake 22# the effect is like include(${CMAKE_CURRENT_LIST_DIR}/<subd>/media_srcs.cmake) 23 24macro(media_include_subdirectory subd) 25 if(EXISTS ${CMAKE_CURRENT_LIST_DIR}/${subd}/media_srcs.cmake) 26 if(CMAKE_WDDM_LINUX) 27 media_wsl_include_subdirectory(${subd}) 28 else() 29 include(${CMAKE_CURRENT_LIST_DIR}/${subd}/media_srcs.cmake) 30 endif() 31 else() 32 message("-- ${CMAKE_CURRENT_LIST_DIR}/${subd}/media_srcs.cmake doesn't exist, macro(media_include_subdirectory) just does nothing") 33 endif() 34endmacro() 35 36# add current path to include path 37macro(media_add_curr_to_include_path) 38 if(${PLATFORM} STREQUAL "linux") 39 include_directories(${CMAKE_CURRENT_LIST_DIR}) 40 else() 41 media_add_curr_to_include_path_ext(${CMAKE_CURRENT_LIST_DIR}) 42 endif() 43endmacro() 44 45# MediaSetLinkerFlags: apply linker flags for given configuration 46# linkerFlags: linker specific options 47# linkerTarget: optional parameter - apply linker flags for specfied target 48macro (MediaSetLinkerFlags linkerFlags linkerTarget) 49 foreach (opt ${linkerFlags}) 50 if ("${linkerTarget}" STREQUAL "") 51 set (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${opt}") 52 set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${opt}") 53 else() 54 set (CMAKE_SHARED_LINKER_FLAGS_${linkerTarget} "${CMAKE_SHARED_LINKER_FLAGS_${linkerTarget}} ${opt}") 55 set (CMAKE_EXE_LINKER_FLAGS_${linkerTarget} "${CMAKE_EXE_LINKER_FLAGS_${linkerTarget}} ${opt}") 56 endif() 57 endforeach() 58endmacro() 59 60# common defines 61macro (MediaAddCommonTargetDefines target) 62 if (TARGET ${target}) 63 set_property(TARGET ${target} APPEND PROPERTY COMPILE_DEFINITIONS 64 $<$<CONFIG:Release>:_RELEASE> 65 $<$<CONFIG:ReleaseInternal>: _RELEASE_INTERNAL> 66 $<$<CONFIG:Debug>: _DEBUG DEBUG> 67 ) 68 endif() 69endmacro() 70 71include( ${MEDIA_EXT_CMAKE}/ext/media_utils_ext.cmake OPTIONAL) 72