Skip to content

Commit

Permalink
Update FindLibraryUtilityFunctions.cmake
Browse files Browse the repository at this point in the history
Fixed argument conflict to append_link_library call
  • Loading branch information
sgenie68 authored Dec 13, 2019
1 parent 8d3f46f commit 650f201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/FindLibraryUtilityFunctions.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function(add_configuration_link_libraries _TARGET _CONFIG _LIBS)
list(REMOVE_AT _LIBS 0)
# Add non-matched libraries as link libraries so nothing gets forgotten
foreach(LIB ${_LIBS})
append_link_library(${_TARGET} ${_CONFIG} ${LIB})
append_link_library(${_TARGET} ${LIB})
endforeach()
endfunction()

Expand Down

0 comments on commit 650f201

Please sign in to comment.