2018-02-27 21:47:36 +08:00
|
|
|
#
|
2018-09-18 15:11:08 +08:00
|
|
|
# Copyright (C) 2018 Intel Corporation
|
2018-02-27 21:47:36 +08:00
|
|
|
#
|
2018-09-18 15:11:08 +08:00
|
|
|
# SPDX-License-Identifier: MIT
|
2018-02-27 21:47:36 +08:00
|
|
|
#
|
|
|
|
|
|
|
|
macro(hide_subdir subdir)
|
2018-03-14 19:45:24 +08:00
|
|
|
file(RELATIVE_PATH subdir_relative ${IGDRCL_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/${subdir})
|
|
|
|
set(${subdir_relative}_hidden} TRUE)
|
2018-02-27 21:47:36 +08:00
|
|
|
endmacro()
|
|
|
|
|
|
|
|
macro(add_subdirectories)
|
|
|
|
file(GLOB subdirectories RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/*)
|
|
|
|
foreach(subdir ${subdirectories})
|
2018-03-14 19:45:24 +08:00
|
|
|
file(RELATIVE_PATH subdir_relative ${IGDRCL_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/${subdir})
|
|
|
|
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${subdir}/CMakeLists.txt AND NOT ${subdir_relative}_hidden})
|
2018-02-27 21:47:36 +08:00
|
|
|
add_subdirectory(${subdir})
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endmacro()
|
|
|
|
|
|
|
|
macro(create_project_source_tree target)
|
2018-03-01 18:59:54 +08:00
|
|
|
if(MSVC)
|
|
|
|
set(prefixes ${CMAKE_CURRENT_SOURCE_DIR} ${ARGN})
|
|
|
|
get_target_property(source_list ${target} SOURCES)
|
|
|
|
foreach(source_file ${source_list})
|
|
|
|
if(NOT ${source_file} MATCHES "\<*\>")
|
|
|
|
set(source_file_relative ${source_file})
|
|
|
|
foreach(prefix ${prefixes})
|
|
|
|
if(source_file_relative)
|
|
|
|
string(REPLACE "${prefix}" "" source_file_relative ${source_file_relative})
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
get_filename_component(source_path_relative ${source_file_relative} PATH)
|
|
|
|
if(source_path_relative)
|
|
|
|
string(REPLACE "/" "\\" source_path_relative ${source_path_relative})
|
|
|
|
endif()
|
|
|
|
source_group("Source Files\\${source_path_relative}" FILES ${source_file})
|
2018-02-27 21:47:36 +08:00
|
|
|
endif()
|
2018-03-01 18:59:54 +08:00
|
|
|
endforeach()
|
|
|
|
endif()
|
2018-02-27 21:47:36 +08:00
|
|
|
endmacro()
|
2018-03-22 20:53:11 +08:00
|
|
|
|
|
|
|
macro(create_project_source_tree_with_exports target exports_filename)
|
|
|
|
create_project_source_tree(${target})
|
|
|
|
if(MSVC)
|
|
|
|
if(NOT "${exports_filename}" STREQUAL "")
|
|
|
|
source_group("exports" FILES "${exports_filename}")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endmacro()
|
2018-03-22 18:35:24 +08:00
|
|
|
|
|
|
|
macro(apply_macro_for_each_gen type)
|
|
|
|
set(given_type ${type})
|
|
|
|
foreach(GEN_TYPE ${ALL_GEN_TYPES})
|
|
|
|
string(TOLOWER ${GEN_TYPE} GEN_TYPE_LOWER)
|
|
|
|
GEN_CONTAINS_PLATFORMS(${given_type} ${GEN_TYPE} GENX_HAS_PLATFORMS)
|
|
|
|
if(${GENX_HAS_PLATFORMS})
|
|
|
|
macro_for_each_gen()
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
endmacro()
|
|
|
|
|
|
|
|
macro(apply_macro_for_each_platform)
|
|
|
|
GET_PLATFORMS_FOR_GEN(${given_type} ${GEN_TYPE} TESTED_GENX_PLATFORMS)
|
|
|
|
foreach(PLATFORM_IT ${TESTED_GENX_PLATFORMS})
|
|
|
|
string(TOLOWER ${PLATFORM_IT} PLATFORM_IT_LOWER)
|
|
|
|
macro_for_each_platform()
|
|
|
|
endforeach()
|
|
|
|
endmacro()
|
|
|
|
|
|
|
|
macro(apply_macro_for_each_test_config type)
|
|
|
|
GET_TEST_CONFIGURATIONS_FOR_PLATFORM(${type} ${GEN_TYPE} ${PLATFORM_IT} PLATFORM_CONFIGURATIONS)
|
|
|
|
foreach(PLATFORM_CONFIGURATION ${PLATFORM_CONFIGURATIONS})
|
|
|
|
string(REPLACE "/" ";" CONFIGURATION_PARAMS ${PLATFORM_CONFIGURATION})
|
|
|
|
list(GET CONFIGURATION_PARAMS 1 SLICES)
|
|
|
|
list(GET CONFIGURATION_PARAMS 2 SUBSLICES)
|
|
|
|
list(GET CONFIGURATION_PARAMS 3 EU_PER_SS)
|
|
|
|
macro_for_each_test_config()
|
|
|
|
endforeach()
|
|
|
|
endmacro()
|
2018-04-18 00:11:50 +08:00
|
|
|
|
|
|
|
macro(get_family_name_with_type gen_type platform_type)
|
|
|
|
string(REPLACE "GEN" "Gen" gen_type_capitalized ${gen_type})
|
|
|
|
string(TOLOWER ${platform_type} platform_type_lower)
|
|
|
|
set(family_name_with_type ${gen_type_capitalized}${platform_type_lower})
|
|
|
|
endmacro()
|