What cmake method is used to configure the Additional Dependencies option in Librarian for VS Static library project ?

629e6b5a7a1fe380024d0292ba19f47cc5565775_2_666x499

What are you trying to achieve?

If you are trying to link system libraries then just use target_link_libraries like so.

target_link_libraries(foobar PRIVATE
    # DX12 libraries
    d3d12.lib
    dxgi.lib
    dxguid.lib
)

This will properly handle dependencies.