File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ function(gen_selected_ops)
1515 set (arg_names LIB_NAME OPS_SCHEMA_YAML ROOT_OPS INCLUDE_ALL_OPS DTYPE_HEADER)
1616 cmake_parse_arguments (GEN "" "" "${arg_names} " ${ARGN} )
1717
18- message (STATUS "Generating operator lib:" )
18+ message (STATUS "Generating selected operator lib:" )
1919 message (STATUS " LIB_NAME: ${GEN_LIB_NAME} " )
2020 message (STATUS " OPS_SCHEMA_YAML: ${GEN_OPS_SCHEMA_YAML} " )
2121 message (STATUS " ROOT_OPS: ${GEN_ROOT_OPS} " )
@@ -204,12 +204,12 @@ function(gen_operators_lib)
204204 message (STATUS " LIB_NAME: ${GEN_LIB_NAME} " )
205205 message (STATUS " KERNEL_LIBS: ${GEN_KERNEL_LIBS} " )
206206 message (STATUS " DEPS: ${GEN_DEPS} " )
207- message (STATUS " DTYPE_HEADER: ${GEN_HEADER } " )
207+ message (STATUS " DTYPE_HEADER: ${GEN_DTYPE_HEADER } " )
208208
209209 set (_out_dir ${CMAKE_CURRENT_BINARY_DIR} /${GEN_LIB_NAME} )
210210
211211 add_library (${GEN_LIB_NAME} )
212- if (GEN_DTYPE_SELECT )
212+ if (GEN_DTYPE_HEADER )
213213 target_sources (
214214 ${GEN_LIB_NAME}
215215 PRIVATE ${_out_dir} /RegisterCodegenUnboxedKernelsEverything.cpp
@@ -231,7 +231,7 @@ function(gen_operators_lib)
231231
232232 target_link_options_shared_lib(${GEN_LIB_NAME} )
233233 set (_generated_headers ${_out_dir} /Functions.h ${_out_dir} /NativeFunctions.h)
234- if (GEN_DTYPE_SELECT )
234+ if (GEN_DTYPE_HEADER )
235235 list (APPEND _generated_headers ${_out_dir} /selected_op_variants.h)
236236 endif ()
237237 set_target_properties (
You can’t perform that action at this time.
0 commit comments