1# Copyright (c) 2018-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 21set(TMP_SOURCES_ "") 22set(TMP_HEADERS_ "") 23media_include_subdirectory(pipeline) 24media_include_subdirectory(packet) 25media_include_subdirectory(features) 26media_include_subdirectory(task) 27media_include_subdirectory(scalability) 28media_include_subdirectory(mediacontext) 29media_include_subdirectory(statusreport) 30media_include_subdirectory(mmc) 31media_include_subdirectory(bufferMgr) 32media_include_subdirectory(mediacopy) 33media_include_subdirectory(media_sfc_interface) 34media_include_subdirectory(classtrace) 35media_include_subdirectory(profiler) 36 37set(TMP_SOURCES_ 38 ${TMP_SOURCES_} 39 ${CMAKE_CURRENT_LIST_DIR}/media_debug_config_manager.cpp 40 ${CMAKE_CURRENT_LIST_DIR}/media_debug_interface.cpp 41 ${CMAKE_CURRENT_LIST_DIR}/media_render_common.cpp 42 ${CMAKE_CURRENT_LIST_DIR}/null_hardware_next.cpp 43 ${CMAKE_CURRENT_LIST_DIR}/media_debug_dumper.cpp 44 ${CMAKE_CURRENT_LIST_DIR}/media_debug_fast_dump.cpp 45 ${CMAKE_CURRENT_LIST_DIR}/oca_rtlog_section_mgr.cpp 46) 47 48set(TMP_HEADERS_ 49 ${TMP_HEADERS_} 50 ${CMAKE_CURRENT_LIST_DIR}/media_utils.h 51 ${CMAKE_CURRENT_LIST_DIR}/media_common_defs.h 52 ${CMAKE_CURRENT_LIST_DIR}/media_capstable.h 53 ${CMAKE_CURRENT_LIST_DIR}/media_debug_config_manager.h 54 ${CMAKE_CURRENT_LIST_DIR}/media_debug_interface.h 55 ${CMAKE_CURRENT_LIST_DIR}/media_debug_utils.h 56 ${CMAKE_CURRENT_LIST_DIR}/media_render_common.h 57 ${CMAKE_CURRENT_LIST_DIR}/mediamemdecomp.h 58 ${CMAKE_CURRENT_LIST_DIR}/media_debug_dumper.h 59 ${CMAKE_CURRENT_LIST_DIR}/media_debug_serializer.h 60 ${CMAKE_CURRENT_LIST_DIR}/media_debug_fast_dump.h 61 ${CMAKE_CURRENT_LIST_DIR}/media_debug_fast_dump_imp.hpp 62 ${CMAKE_CURRENT_LIST_DIR}/oca_rtlog_section_mgr.h 63) 64 65 66set(SOFTLET_COMMON_SOURCES_ 67 ${SOFTLET_COMMON_SOURCES_} 68 ${TMP_SOURCES_} 69) 70 71set(SOFTLET_COMMON_HEADERS_ 72 ${SOFTLET_COMMON_HEADERS_} 73 ${TMP_HEADERS_} 74) 75 76source_group(SharedNext\\shared FILES ${TMP_HEADERS_} ${TMP_SOURCES_}) 77 78set(SOFTLET_COMMON_PRIVATE_INCLUDE_DIRS_ 79 ${SOFTLET_COMMON_PRIVATE_INCLUDE_DIRS_} 80 ${CMAKE_CURRENT_LIST_DIR} 81)