<?xml version="1.0"?>
|
|
<project basedir= "." name= "myapp" default= "main" > |
<taskdef classpath= "orangevolt-ant-tasks-1.3.2.jar" resource= "com/orangevolt/tools/ant/taskdefs.properties" /> |
|
<target name= "main" > |
<!-- |
required to fetch the windows specific directories
|
into ant properties
|
-->
|
<win32.properties/> |
|
<!-- |
creates a entry in the programs menu
|
|
will be opened using the associated
|
viewer program (notepad i think :-)
|
-->
|
<win32.shortcut |
file=
"${win32.personal.programs_menu}/Orangevolt/read license.url" |
url=
"${win32.personal.programfiles}/Orangevolt/test/license.txt" |
/>
|
<!-- |
creates a entry in the programs menu
|
|
will be opened using the associated
|
viewer program (internet explorer, mozilla, opera - whatever)
|
-->
|
<win32.shortcut |
file=
"${win32.personal.programs_menu}/Orangevolt/Go to Orangevolt.url" |
url=
"http://www.orangevolt.com" |
/>
|
<!-- |
creates favorites entry
|
-->
|
<win32.shortcut |
file=
"${win32.personal.favorites}/Orangevolt/Go to Orangevolt.url" |
url=
"http://www.orangevolt.com" |
/>
|
<!-- |
creates a entry in the programs menu
|
the file is executed when opening
|
-->
|
<win32.shortcut |
file=
"${win32.personal.programs_menu}/Orangevolt/layxx.url" |
url=
"${win32.personal.programfiles}/Orangevolt/roxes-layxx-1.4-2003-10-23.exe" |
iconFile=
"C:\winnt\explorer.exe" |
iconIndex=
"0" |
/>
|
</target> |
</project> |