Project_close, Usage, Options – Altera Quartus II Scripting User Manual

Page 352: Description, Example, Project_close –222

Advertising
background image

3–222

Chapter 3: Tcl Packages & Commands

project

Quartus II Scripting Reference Manual

© July 2013

Altera Corporation

project_close

Usage

project_close [-dont_export_assignments]

Options

-dont_export_assignments: Do not export assignments to file

Description

Closes an open project.

The assignments created or modified during an open project are committed to the Quartus II Settings File
(.qsf) during a "project_close", unless you use the "-dont_export_assignments" option.

Example

## Close the project if open
if [is_project_open] {
project_close
}
## Close the project if open
## and do not export the assignments
if [is_project_open] {
project_close -dont_export_assignments
}

Advertising