Description
This Tcl command creates FlashPro Express job using the programming job exported from Libero.
create_job_project -job_project_location {job project location} \
-job_file {path and name of job file} \
-overwrite value
Arguments
Parameter | Type | Description |
---|
job_project_location | string | Specifies the location for your FlashPro Express job (*.job) project. Must include the complete path to the *.pro file. If you do not provide the full path, FlashPro infers that you want to open the project from your current working directory. |
job_file | string | Path to the Libero job file (*.job) that is used as input to create the Flashpro Express job project. |
overwrite | boolean | Set value to TRUE, true or 1 to overwrite your existing job project. Valid values are: TRUE, true, 1, FALSE. false or 0. |
Return Type | Description |
---|
None | None |
Error Codes
Error Code | Description |
---|
None | None |
Example
The following example creates a job project named test.job in the \fpexpress directory. It does not overwrite the existing job project:
create_job_project \
-job_project_location {D:\fpexpress} \
-job_file {D:\test\designer\test\export\test.job} –overwrite 0