Skip to content

Commit 50b15cf

Browse files
committed
CMake: DeployLibs: Fix config name argument
1 parent a47028d commit 50b15cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmake/DeployLibs.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ math( EXPR arg_component_idx "${actual_args_start_idx} + 1" )
2222
set( component_name ${CMAKE_ARGV${arg_component_idx}} )
2323

2424
math( EXPR arg_config_idx "${actual_args_start_idx} + 2" )
25-
set( config_name ${CMAKE_ARGV${arg_component_idx}} )
25+
set( config_name ${CMAKE_ARGV${arg_config_idx}} )
2626

2727
math( EXPR arg_path_list_idx "${actual_args_start_idx} + 3" )
2828
set( path_list_file ${CMAKE_ARGV${arg_path_list_idx}} )

0 commit comments

Comments
 (0)