@@ -33,15 +33,15 @@ OverrideLinkFlags:
3333# (Optional) The list of dependencies needed by the script
3434Dependencies :
3535 # Dependency name
36- - Name : lib1
36+ - Name : MyLibrary
3737
3838 # Supported platforms of the dependency
3939 Platforms : [Windows, Linux, MacOS]
4040
4141 # The source of getting the dependency
4242 Source :
4343 Type : Git
44- Value : " https://github.com/USER/REPO .git"
44+ Value : " https://github.com/MyUser/MyLibrary .git"
4545
4646 # Library Type (Static, Object, Shared, Header)
4747 LibraryType : Static
@@ -50,20 +50,22 @@ Dependencies:
5050 IncludePaths :
5151 - " src/include"
5252
53- # (Optional if Header type) Searchable properties of the dependency
53+ # (Optional if LibraryType is Header) Link properties of the dependency
5454 LinkProperties :
5555 # Properties for searching the library binary for the profile
5656 " g++ " :
57- # The library name to be searched for when linking against the script
58- SearchLibraryNames : ["lib1 "]
57+ # The library names to be searched for when linking against the script
58+ SearchLibraryNames : ["MyLibrary "]
5959
60- # TODO(NOW): Add option to exclude names
60+ # (Optional) The library names to be excluded from being searched
61+ ExcludeLibraryNames : []
6162
6263 # The path (relative to the dependency folder) to be searched for the dependency binaries
6364 SearchDirectories : ["./build"]
6465
65- # TODO(NOW): Add additional link option?
66-
66+ # (Optional) Additional link options for this dependency
67+ AdditionalLinkOptions :
68+ All : []
6769
6870
6971 # (Optional) List of setup commands for the supported platforms
0 commit comments