Include additional HDL or constraint files in synthesis project
''
(default)
Additional project files, such as HDL source files (.v, .vhd) or constraint files (.ucf), that you want to include in your synthesis project, specified as a character vector. Separate file names with a semicolon (;).
You cannot use SynthesisProjectAdditionalFiles
to
include Tcl files. To specify synthesis project Tcl files, use the AdditionalProjectCreationTclFiles
property
of the hdlcoder.WorkflowConfig
object.
To include a source file, src_file.vhd
, and
a constraint file, constraint_file.ucf
, in the
synthesis proejct for a DUT subsystem, myDUT
:
hdlset_param (myDUT, 'SynthesisProjectAdditionalFiles', 'L:\src_file.vhd;L:\constraint_file.ucf;')
To set this property, use hdlset_param
or makehdl
. To view the property value, use hdlget_param
.