Everything

build.Link.LibraryFile


This property sets or refers to library files of the active project.

[Specification format]

build.Link.LibraryFile = filelist

[Setting(s)]

Setting

Description

filelist

Set the library files of the active project as a list of strings.

[Reference]

List of library files

[Detailed description]

-

This property sets or refers to library files of the active project.

-

Add or change for the referred list to change the setting.

[Example of use]

>>>lib1 = build.Link.LibraryFile    ... Refer the current setting and add a library file
>>>print lib1
['test1.lib', 'test2.lib']
>>>lib1.append("test3.lib")
>>>build.Link.LibraryFile = lib1
>>>print build.Link.LibraryFile
['test1.lib', 'test2.lib', 'test3.lib']
>>>
>>>lib2 = ['test1.lib', 'test2.lib']    ... Set multiple library files
>>>build.Link.LibraryFile = lib2
>>>print build.Link.LibraryFile
['test1.lib', 'test2.lib']