File tree Expand file tree Collapse file tree 4 files changed +8
-12
lines changed Expand file tree Collapse file tree 4 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,6 @@ macro(macro_for_each_gen)
19
19
set (GENX_PREFIX ${CMAKE_CURRENT_SOURCE_DIR}${BRANCH_DIR}${GEN_TYPE_LOWER} )
20
20
# Add default GEN files
21
21
22
- foreach (SRC_IT "state_compute_mode_helper_${GEN_TYPE_LOWER} .cpp" )
23
- if (EXISTS ${GENX_PREFIX} /${SRC_IT} )
24
- list (APPEND RUNTIME_SRCS_${GEN_TYPE}_CPP_BASE ${GENX_PREFIX} /${SRC_IT} )
25
- endif ()
26
- endforeach ()
27
-
28
22
if (EXISTS "${GENX_PREFIX} /additional_files_${GEN_TYPE_LOWER} .cmake" )
29
23
include ("${GENX_PREFIX} /additional_files_${GEN_TYPE_LOWER} .cmake" )
30
24
endif ()
Original file line number Diff line number Diff line change @@ -101,12 +101,6 @@ macro(macro_for_each_gen)
101
101
list (APPEND CORE_SRCS_${GEN_TYPE}_H_BASE ${SRC_FILE} )
102
102
endif ()
103
103
endforeach ()
104
- foreach (BRANCH_DIR ${BRANCH_DIR_LIST} )
105
- set (SRC_FILE ${NEO_SHARED_DIRECTORY}${BRANCH_DIR}${GEN_TYPE_LOWER} /image_core_${GEN_TYPE_LOWER}.cpp )
106
- if (EXISTS ${SRC_FILE} )
107
- list (APPEND CORE_SRCS_${GEN_TYPE}_CPP_BASE ${SRC_FILE} )
108
- endif ()
109
- endforeach ()
110
104
111
105
foreach (OS_IT "BASE" "WDDM" "LINUX" )
112
106
foreach (SRC_IT ${CORE_RUNTIME_SRCS_GENX_CPP_${OS_IT}} )
@@ -116,6 +110,10 @@ macro(macro_for_each_gen)
116
110
endif ()
117
111
endforeach ()
118
112
endforeach ()
113
+ set (SRC_FILE ${NEO_SHARED_DIRECTORY}${BRANCH}${GEN_TYPE_LOWER} /image_core_${GEN_TYPE_LOWER}.cpp )
114
+ if (EXISTS ${SRC_FILE} )
115
+ list (APPEND CORE_SRCS_${GEN_TYPE}_CPP_BASE ${SRC_FILE} )
116
+ endif ()
119
117
120
118
set (SRC_FILE ${CMAKE_CURRENT_SOURCE_DIR}${BRANCH_DIR}${GEN_TYPE_LOWER} /enable_family_full_core_${GEN_TYPE_LOWER}.cpp )
121
119
if (EXISTS ${SRC_FILE} )
@@ -147,6 +145,10 @@ macro(macro_for_each_gen)
147
145
endif ()
148
146
149
147
endforeach ()
148
+ set (SRC_FILE "${CORE_GENX_PREFIX} /state_compute_mode_helper_${GEN_TYPE_LOWER} .cpp" )
149
+ if (EXISTS ${SRC_FILE} )
150
+ list (APPEND CORE_SRCS_${GEN_TYPE}_CPP_BASE ${SRC_FILE} )
151
+ endif ()
150
152
if (EXISTS ${GENERATED_GENX_PREFIX} /hw_cmds_generated_${GEN_TYPE_LOWER}.inl )
151
153
list (APPEND CORE_SRCS_${GEN_TYPE}_H_BASE "${GENERATED_GENX_PREFIX} /hw_cmds_generated_${GEN_TYPE_LOWER} .inl" )
152
154
endif ()
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments