Skip to content

Commit 015bf75

Browse files
committed
Address review from llvm#89750
1 parent ce318b3 commit 015bf75

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libclc/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ if( LIBCLC_STANDALONE_BUILD )
172172
else()
173173
add_llvm_utility( prepare_builtins utils/prepare-builtins.cpp )
174174
endif()
175-
set_target_properties( prepare_builtins PROPERTIES FOLDER "libclc/Codegenning")
175+
set_target_properties( prepare_builtins PROPERTIES FOLDER "libclc/Sourcegenning")
176176
target_compile_definitions( prepare_builtins PRIVATE ${LLVM_VERSION_DEFINE} )
177177
# These were not properly reported in early LLVM and we don't need them
178178
target_compile_options( prepare_builtins PRIVATE -fno-rtti -fno-exceptions )
@@ -230,14 +230,14 @@ add_custom_command(
230230
COMMAND ${Python3_EXECUTABLE} ${script_loc} > convert.cl
231231
DEPENDS ${script_loc} )
232232
add_custom_target( "generate_convert.cl" DEPENDS convert.cl )
233-
set_target_properties( "generate_convert.cl" PROPERTIES FOLDER "libclc/Codegenning" )
233+
set_target_properties( "generate_convert.cl" PROPERTIES FOLDER "libclc/Sourcegenning" )
234234

235235
add_custom_command(
236236
OUTPUT clspv-convert.cl
237237
COMMAND ${Python3_EXECUTABLE} ${script_loc} --clspv > clspv-convert.cl
238238
DEPENDS ${script_loc} )
239239
add_custom_target( "clspv-generate_convert.cl" DEPENDS clspv-convert.cl )
240-
set_target_properties( "clspv-generate_convert.cl" PROPERTIES FOLDER "libclc/Codegenning" )
240+
set_target_properties( "clspv-generate_convert.cl" PROPERTIES FOLDER "libclc/Sourcegenning" )
241241

242242
enable_testing()
243243

@@ -401,7 +401,7 @@ foreach( t ${LIBCLC_TARGETS_TO_BUILD} )
401401
DEPENDS ${builtins_link_lib}
402402
)
403403
add_custom_target( "prepare-${spv_suffix}" ALL DEPENDS "${spv_suffix}" )
404-
set_target_properties( "prepare-${spv_suffix}" PROPERTIES FOLDER "libclc/Codegenning" )
404+
set_target_properties( "prepare-${spv_suffix}" PROPERTIES FOLDER "libclc/Sourcegenning" )
405405
install( FILES ${CMAKE_CURRENT_BINARY_DIR}/${spv_suffix}
406406
DESTINATION "${CMAKE_INSTALL_DATADIR}/clc" )
407407
else()

0 commit comments

Comments
 (0)