Open project, Option, Open project option – Zilog ZUSBOPTS User Manual
Page 403

UM017105-0511
Supported Script File Commands
Zilog Developer Studio II – ZNEO™
User Manual
375
•
NOREPLACE
is an optional parameter to use to prevent the overwriting of existing
projects.
For example:
new project "test1.zdsproj" "ZNEO" "exe"
new project "test1.zdsproj" "ZNEO" "exe" NOREPLACE
open project
The
open project
command opens the project designated by project_name. If the full
path is not supplied, the current working directory is used. The command fails if the spec-
ified project does not exist. The following example presents the syntax of the
open
project
command:
open project "<project_name>"
For example:
open project "test1.zdsproj"
open project "c:\projects\test1.zdsproj"
option
The
option
command manipulates project settings for the active build configuration of
the currently open project. Each call to
option
applies to a single tool but can set multiple
options for the given tool. The following example presents the syntax for the
option
command:
option <tool_name> expr1 expr2 . . . exprN,
where:
expr is (<option name> = <option value>)
For example:
option assembler debug = TRUE
option compiler debug = TRUE keeplst = TRUE
option debugger readmem = TRUE
option linker igcase = "FALSE"
option linker code = 0000-FFFF
option general cpu=z8f64
Many of these script file options are also available from the command line. For more
details, see Running ZDS II from the Command Line on
Note: